Lines Matching refs:s_pSupportedServices
168 Sequence< Sequence< ::rtl::OUString > >* OModule::s_pSupportedServices = NULL; member in COMPMOD_NAMESPACE::OModule
181 OSL_ENSURE(!s_pSupportedServices && !s_pCreationFunctionPointers && !s_pFactoryFunctionPointers, in registerComponent()
184 s_pSupportedServices = new Sequence< Sequence< ::rtl::OUString > >; in registerComponent()
188 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in registerComponent()
191 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in registerComponent()
198 s_pSupportedServices->realloc(nOldLen + 1); in registerComponent()
203 s_pSupportedServices->getArray()[nOldLen] = _rServiceNames; in registerComponent()
216 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in revokeComponent()
218 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in revokeComponent()
230 removeElementAt(*s_pSupportedServices, i); in revokeComponent()
240 delete s_pSupportedServices; s_pSupportedServices = NULL; in revokeComponent()
259 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in getComponentFactory()
261 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in getComponentFactory()
272 const Sequence< ::rtl::OUString >* pServices = s_pSupportedServices->getConstArray(); in getComponentFactory()