Lines Matching refs:s_pCreationFunctionPointers

37 uno::Sequence< sal_Int64 >*		            OModuleRegistration::s_pCreationFunctionPointers = NULL;  member in OModuleRegistration
49 OSL_ENSURE(!s_pSupportedServices && !s_pCreationFunctionPointers && !s_pFactoryFunctionPointers, in registerComponent()
53 s_pCreationFunctionPointers = new uno::Sequence< sal_Int64 >; in registerComponent()
56 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in registerComponent()
60 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in registerComponent()
67 s_pCreationFunctionPointers->realloc(nOldLen + 1); in registerComponent()
72 s_pCreationFunctionPointers->getArray()[nOldLen] = reinterpret_cast<sal_Int64>(_pCreateFunction); in registerComponent()
84 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in revokeComponent()
87 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in revokeComponent()
99 removeElementAt(*s_pCreationFunctionPointers, i); in revokeComponent()
109 delete s_pCreationFunctionPointers; s_pCreationFunctionPointers = NULL; in revokeComponent()
127 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in getComponentFactory()
130 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in getComponentFactory()
141 const sal_Int64* pComponentFunction = s_pCreationFunctionPointers->getConstArray(); in getComponentFactory()