Lines Matching refs:s_pImplementationNames
157 Sequence< ::rtl::OUString >* OModule::s_pImplementationNames = NULL; member in COMPMOD_NAMESPACE::OModule
169 if (!s_pImplementationNames) in registerComponent()
173 s_pImplementationNames = new Sequence< ::rtl::OUString >; in registerComponent()
178 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in registerComponent()
181 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in registerComponent()
182 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in registerComponent()
183 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in registerComponent()
186 sal_Int32 nOldLen = s_pImplementationNames->getLength(); in registerComponent()
187 s_pImplementationNames->realloc(nOldLen + 1); in registerComponent()
192 s_pImplementationNames->getArray()[nOldLen] = _rImplementationName; in registerComponent()
201 if (!s_pImplementationNames) in revokeComponent()
206 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in revokeComponent()
208 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in revokeComponent()
209 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in revokeComponent()
210 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in revokeComponent()
213 sal_Int32 nLen = s_pImplementationNames->getLength(); in revokeComponent()
214 const ::rtl::OUString* pImplNames = s_pImplementationNames->getConstArray(); in revokeComponent()
219 removeElementAt(*s_pImplementationNames, i); in revokeComponent()
227 if (s_pImplementationNames->getLength() == 0) in revokeComponent()
229 delete s_pImplementationNames; s_pImplementationNames = NULL; in revokeComponent()
244 if (!s_pImplementationNames) in getComponentFactory()
249 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in getComponentFactory()
251 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in getComponentFactory()
252 && (s_pImplementationNames->getLength() == s_pCreationFunctionPointers->getLength()) in getComponentFactory()
253 && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), in getComponentFactory()
260 sal_Int32 nLen = s_pImplementationNames->getLength(); in getComponentFactory()
261 const ::rtl::OUString* pImplName = s_pImplementationNames->getConstArray(); in getComponentFactory()