Lines Matching refs:s_pSupportedServices

36 uno::Sequence< uno::Sequence< ::rtl::OUString > >*	OModuleRegistration::s_pSupportedServices = NULL;  member in OModuleRegistration
49 OSL_ENSURE(!s_pSupportedServices && !s_pCreationFunctionPointers && !s_pFactoryFunctionPointers, in registerComponent()
52 s_pSupportedServices = new uno::Sequence< 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()
66 s_pSupportedServices->realloc(nOldLen + 1); in registerComponent()
71 s_pSupportedServices->getArray()[nOldLen] = _rServiceNames; in registerComponent()
84 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in revokeComponent()
86 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in revokeComponent()
98 removeElementAt(*s_pSupportedServices, i); in revokeComponent()
108 delete s_pSupportedServices; s_pSupportedServices = NULL; in revokeComponent()
127 …OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFac… in getComponentFactory()
129 OSL_ENSURE( (s_pImplementationNames->getLength() == s_pSupportedServices->getLength()) in getComponentFactory()
140 const uno::Sequence< ::rtl::OUString >* pServices = s_pSupportedServices->getConstArray(); in getComponentFactory()