Lines Matching refs:s_pCreationFunctionPointers

169 	Sequence< sal_Int64 >*						OModule::s_pCreationFunctionPointers = NULL;  member in COMPMOD_NAMESPACE::OModule
181 OSL_ENSURE(!s_pSupportedServices && !s_pCreationFunctionPointers && !s_pFactoryFunctionPointers, in registerComponent()
185 s_pCreationFunctionPointers = new Sequence< sal_Int64 >; in registerComponent()
188 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in registerComponent()
192 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in registerComponent()
199 s_pCreationFunctionPointers->realloc(nOldLen + 1); in registerComponent()
204 s_pCreationFunctionPointers->getArray()[nOldLen] = reinterpret_cast<sal_Int64>(_pCreateFunction); in registerComponent()
216 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in revokeComponent()
219 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in revokeComponent()
231 removeElementAt(*s_pCreationFunctionPointers, i); in revokeComponent()
241 delete s_pCreationFunctionPointers; s_pCreationFunctionPointers = NULL; in revokeComponent()
259 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in getComponentFactory()
262 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in getComponentFactory()
273 const sal_Int64* pComponentFunction = s_pCreationFunctionPointers->getConstArray(); in getComponentFactory()