Lines Matching refs:s_pFactoryFunctionPointers
160 Sequence< sal_Int64 >* OModule::s_pFactoryFunctionPointers = NULL; member in COMPMOD_NAMESPACE::OModule
171 OSL_ENSURE(!s_pSupportedServices && !s_pCreationFunctionPointers && !s_pFactoryFunctionPointers, in registerComponent()
176 s_pFactoryFunctionPointers = new Sequence< sal_Int64 >; in registerComponent()
178 …entationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers, in registerComponent()
183 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in registerComponent()
190 s_pFactoryFunctionPointers->realloc(nOldLen + 1); in registerComponent()
195 s_pFactoryFunctionPointers->getArray()[nOldLen] = reinterpret_cast<sal_Int64>(_pFactoryFunction); in registerComponent()
206 …entationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers, in revokeComponent()
210 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in revokeComponent()
222 removeElementAt(*s_pFactoryFunctionPointers, i); in revokeComponent()
232 delete s_pFactoryFunctionPointers; s_pFactoryFunctionPointers = NULL; in revokeComponent()
249 …entationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers, in getComponentFactory()
253 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in getComponentFactory()
264 const sal_Int64* pFactoryFunction = s_pFactoryFunctionPointers->getConstArray(); in getComponentFactory()