Lines Matching refs:rtl

45 static const ::rtl::OUString& getConnectionPoolNodeName()  in getConnectionPoolNodeName()
47 …static ::rtl::OUString s_sNodeName = ::rtl::OUString::createFromAscii("org.openoffice.Office.DataA… in getConnectionPoolNodeName()
51 static const ::rtl::OUString& getEnablePoolingNodeName() in getEnablePoolingNodeName()
53 static ::rtl::OUString s_sNodeName = ::rtl::OUString::createFromAscii("EnablePooling"); in getEnablePoolingNodeName()
57 static const ::rtl::OUString& getDriverNameNodeName() in getDriverNameNodeName()
59 static ::rtl::OUString s_sNodeName = ::rtl::OUString::createFromAscii("DriverName"); in getDriverNameNodeName()
63 static const ::rtl::OUString& getDriverSettingsNodeName() in getDriverSettingsNodeName()
65 static ::rtl::OUString s_sNodeName = ::rtl::OUString::createFromAscii("DriverSettings"); in getDriverSettingsNodeName()
69 static const ::rtl::OUString& getEnableNodeName() in getEnableNodeName()
71 static ::rtl::OUString s_sNodeName = ::rtl::OUString::createFromAscii("Enable"); in getEnableNodeName()
80 …m_xManager = Reference< XDriverManager >(m_xServiceFactory->createInstance(::rtl::OUString::create… in OPoolCollection()
86 ::rtl::OUString::createFromAscii("com.sun.star.reflection.ProxyFactory")), in OPoolCollection()
97 …e< ::com::sun::star::frame::XDesktop>( m_xServiceFactory->createInstance(::rtl::OUString::createFr… in OPoolCollection()
110 Reference< XConnection > SAL_CALL OPoolCollection::getConnection( const ::rtl::OUString& _rURL ) th… in getConnection()
115 Reference< XConnection > SAL_CALL OPoolCollection::getConnectionWithInfo( const ::rtl::OUString& _r… in getConnectionWithInfo()
121 ::rtl::OUString sImplName; in getConnectionWithInfo()
147 ::rtl::OUString SAL_CALL OPoolCollection::getImplementationName( ) throw(RuntimeException) in getImplementationName()
154 sal_Bool SAL_CALL OPoolCollection::supportsService( const ::rtl::OUString& _rServiceName ) throw(Ru… in supportsService()
156 Sequence< ::rtl::OUString > aSupported(getSupportedServiceNames()); in supportsService()
157 const ::rtl::OUString* pSupported = aSupported.getConstArray(); in supportsService()
158 const ::rtl::OUString* pEnd = pSupported + aSupported.getLength(); in supportsService()
166 Sequence< ::rtl::OUString > SAL_CALL OPoolCollection::getSupportedServiceNames( ) throw(RuntimeExc… in getSupportedServiceNames()
178 ::rtl::OUString SAL_CALL OPoolCollection::getImplementationName_Static( ) throw(RuntimeException) in getImplementationName_Static()
180 return ::rtl::OUString::createFromAscii("com.sun.star.sdbc.OConnectionPool"); in getImplementationName_Static()
184 Sequence< ::rtl::OUString > SAL_CALL OPoolCollection::getSupportedServiceNames_Static( ) throw(Run… in getSupportedServiceNames_Static()
186 Sequence< ::rtl::OUString > aSupported(1); in getSupportedServiceNames_Static()
187 aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbc.ConnectionPool"); in getSupportedServiceNames_Static()
191 Reference< XDriver > SAL_CALL OPoolCollection::getDriverByURL( const ::rtl::OUString& _rURL ) throw… in getDriverByURL()
198 ::rtl::OUString sImplName; in getDriverByURL()
238 sal_Bool OPoolCollection::isDriverPoolingEnabled(const ::rtl::OUString& _sDriverImplName, in isDriverPoolingEnabled()
248 Sequence< ::rtl::OUString > aDriverKeys = xDirectAccess->getElementNames(); in isDriverPoolingEnabled()
249 const ::rtl::OUString* pDriverKeys = aDriverKeys.getConstArray(); in isDriverPoolingEnabled()
250 const ::rtl::OUString* pDriverKeysEnd = pDriverKeys + aDriverKeys.getLength(); in isDriverPoolingEnabled()
285 sal_Bool OPoolCollection::isPoolingEnabledByUrl(const ::rtl::OUString& _sUrl, in isPoolingEnabledByUrl()
287 ::rtl::OUString& _rsImplName, in isPoolingEnabledByUrl()
317 ::rtl::OUString sKeyValue = aIter->first; in clearConnectionPools()
323 OConnectionPool* OPoolCollection::getConnectionPool(const ::rtl::OUString& _sImplName, in getConnectionPool()
347 Reference< XInterface > OPoolCollection::createWithServiceFactory(const ::rtl::OUString& _rPath) co… in createWithServiceFactory()
352 …Reference< XInterface > xProvider = m_xServiceFactory->createInstance(::rtl::OUString(RTL_CONSTASC… in createWithServiceFactory()
367 const ::rtl::OUString& _rPath) const in createWithProvider()
384 …OSL_ENSURE(xSI->supportsService(::rtl::OUString::createFromAscii("com.sun.star.configuration.Confi… in createWithProvider()
400 …aCreationArgs[0] = makeAny(PropertyValue(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("nodepath")),… in createWithProvider()
401 …aCreationArgs[1] = makeAny(PropertyValue(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("depth")), 0,… in createWithProvider()
402 …aCreationArgs[2] = makeAny(PropertyValue(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("lazywrite"))… in createWithProvider()
404 …static ::rtl::OUString sAccessService = ::rtl::OUString::createFromAscii("com.sun.star.configurati… in createWithProvider()
417 Reference<XInterface> OPoolCollection::openNode(const ::rtl::OUString& _rPath,const Reference<XInte… in openNode()
440 ::rtl::OString("::openNode: there is no element named ") in openNode()
441 += ::rtl::OString(_rPath.getStr(), _rPath.getLength(), RTL_TEXTENCODING_ASCII_US) in openNode()
442 += ::rtl::OString("!")); in openNode()
451 Any OPoolCollection::getNodeValue(const ::rtl::OUString& _rPath,const Reference<XInterface>& _xTree… in getNodeValue()
471 ::rtl::OString("::getNodeValue: caught a NoSuchElementException while trying to open ") in getNodeValue()
472 += ::rtl::OString(e.Message.getStr(), e.Message.getLength(), RTL_TEXTENCODING_ASCII_US) in getNodeValue()
473 += ::rtl::OString("!")); in getNodeValue()
542 ::rtl::OUString sThisDriverName; in propertyChange()