Lines Matching refs:s_pImplementationNames

35 uno::Sequence< ::rtl::OUString >*				    OModuleRegistration::s_pImplementationNames = NULL;  member in OModuleRegistration
47 if (!s_pImplementationNames) in registerComponent()
51 s_pImplementationNames = new uno::Sequence< ::rtl::OUString >; in registerComponent()
56 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in registerComponent()
59 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in registerComponent()
60 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in registerComponent()
61 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in registerComponent()
64 sal_Int32 nOldLen = s_pImplementationNames->getLength(); in registerComponent()
65 s_pImplementationNames->realloc(nOldLen + 1); in registerComponent()
70 s_pImplementationNames->getArray()[nOldLen] = _rImplementationName; in registerComponent()
79 if (!s_pImplementationNames) in revokeComponent()
84 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in revokeComponent()
86 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in revokeComponent()
87 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in revokeComponent()
88 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in revokeComponent()
91 sal_Int32 nLen = s_pImplementationNames->getLength(); in revokeComponent()
92 const ::rtl::OUString* pImplNames = s_pImplementationNames->getConstArray(); in revokeComponent()
97 removeElementAt(*s_pImplementationNames, i); in revokeComponent()
105 if (s_pImplementationNames->getLength() == 0) in revokeComponent()
107 delete s_pImplementationNames; s_pImplementationNames = NULL; in revokeComponent()
122 if (!s_pImplementationNames) in getComponentFactory()
127 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in getComponentFactory()
129 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in getComponentFactory()
130 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in getComponentFactory()
131 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in getComponentFactory()
138 sal_Int32 nLen = s_pImplementationNames->getLength(); in getComponentFactory()
139 const ::rtl::OUString* pImplName = s_pImplementationNames->getConstArray(); in getComponentFactory()