Lines Matching refs:s_pCreationFunctionPointers

159 	Sequence< sal_Int64 >*						OModule::s_pCreationFunctionPointers = NULL;  member in COMPMOD_NAMESPACE::OModule
171 OSL_ENSURE(!s_pSupportedServices && !s_pCreationFunctionPointers && !s_pFactoryFunctionPointers, in registerComponent()
175 s_pCreationFunctionPointers = new Sequence< sal_Int64 >; in registerComponent()
178 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in registerComponent()
182 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in registerComponent()
189 s_pCreationFunctionPointers->realloc(nOldLen + 1); in registerComponent()
194 s_pCreationFunctionPointers->getArray()[nOldLen] = reinterpret_cast<sal_Int64>(_pCreateFunction); in registerComponent()
206 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in revokeComponent()
209 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in revokeComponent()
221 removeElementAt(*s_pCreationFunctionPointers, i); in revokeComponent()
231 delete s_pCreationFunctionPointers; s_pCreationFunctionPointers = NULL; in revokeComponent()
249 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in getComponentFactory()
252 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in getComponentFactory()
263 const sal_Int64* pComponentFunction = s_pCreationFunctionPointers->getConstArray(); in getComponentFactory()