Lines Matching refs:s_pImplementationNames

167 	Sequence< ::rtl::OUString >*				OModule::s_pImplementationNames = NULL;  member in COMPMOD_NAMESPACE::OModule
179 if (!s_pImplementationNames) in registerComponent()
183 s_pImplementationNames = new Sequence< ::rtl::OUString >; in registerComponent()
188 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in registerComponent()
191 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in registerComponent()
192 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in registerComponent()
193 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in registerComponent()
196 sal_Int32 nOldLen = s_pImplementationNames->getLength(); in registerComponent()
197 s_pImplementationNames->realloc(nOldLen + 1); in registerComponent()
202 s_pImplementationNames->getArray()[nOldLen] = _rImplementationName; in registerComponent()
211 if (!s_pImplementationNames) in revokeComponent()
216 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in revokeComponent()
218 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in revokeComponent()
219 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in revokeComponent()
220 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in revokeComponent()
223 sal_Int32 nLen = s_pImplementationNames->getLength(); in revokeComponent()
224 const ::rtl::OUString* pImplNames = s_pImplementationNames->getConstArray(); in revokeComponent()
229 removeElementAt(*s_pImplementationNames, i); in revokeComponent()
237 if (s_pImplementationNames->getLength() == 0) in revokeComponent()
239 delete s_pImplementationNames; s_pImplementationNames = NULL; in revokeComponent()
254 if (!s_pImplementationNames) in getComponentFactory()
259 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in getComponentFactory()
261 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in getComponentFactory()
262 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in getComponentFactory()
263 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in getComponentFactory()
270 sal_Int32 nLen = s_pImplementationNames->getLength(); in getComponentFactory()
271 const ::rtl::OUString* pImplName = s_pImplementationNames->getConstArray(); in getComponentFactory()