Lines Matching refs:s_pFactoryFunctionPointers

38 uno::Sequence< sal_Int64 >*				    OModuleRegistration::s_pFactoryFunctionPointers = NULL;  member in OModuleRegistration
49 OSL_ENSURE(!s_pSupportedServices && !s_pCreationFunctionPointers && !s_pFactoryFunctionPointers, in registerComponent()
54 s_pFactoryFunctionPointers = new uno::Sequence< sal_Int64 >; in registerComponent()
56 …entationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers, in registerComponent()
61 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in registerComponent()
68 s_pFactoryFunctionPointers->realloc(nOldLen + 1); in registerComponent()
73 s_pFactoryFunctionPointers->getArray()[nOldLen] = reinterpret_cast<sal_Int64>(_pFactoryFunction); in registerComponent()
84 …entationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers, in revokeComponent()
88 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in revokeComponent()
100 removeElementAt(*s_pFactoryFunctionPointers, i); in revokeComponent()
110 delete s_pFactoryFunctionPointers; s_pFactoryFunctionPointers = NULL; in revokeComponent()
127 …entationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers, in getComponentFactory()
131 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in getComponentFactory()
142 const sal_Int64* pFactoryFunction = s_pFactoryFunctionPointers->getConstArray(); in getComponentFactory()