Lines Matching refs:s_pFactoryFunctionPointers

170 	Sequence< sal_Int64 >*						OModule::s_pFactoryFunctionPointers = NULL;  member in COMPMOD_NAMESPACE::OModule
181 OSL_ENSURE(!s_pSupportedServices && !s_pCreationFunctionPointers && !s_pFactoryFunctionPointers, in registerComponent()
186 s_pFactoryFunctionPointers = new Sequence< sal_Int64 >; in registerComponent()
188 …entationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers, in registerComponent()
193 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in registerComponent()
200 s_pFactoryFunctionPointers->realloc(nOldLen + 1); in registerComponent()
205 s_pFactoryFunctionPointers->getArray()[nOldLen] = reinterpret_cast<sal_Int64>(_pFactoryFunction); in registerComponent()
216 …entationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers, in revokeComponent()
220 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in revokeComponent()
232 removeElementAt(*s_pFactoryFunctionPointers, i); in revokeComponent()
242 delete s_pFactoryFunctionPointers; s_pFactoryFunctionPointers = NULL; in revokeComponent()
259 …entationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers, in getComponentFactory()
263 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in getComponentFactory()
274 const sal_Int64* pFactoryFunction = s_pFactoryFunctionPointers->getConstArray(); in getComponentFactory()