Lines Matching refs:_rURL
185 AcceptsURL( const ::rtl::OUString& _rURL ) : m_rURL( _rURL ) { } in AcceptsURL() argument
459 Reference< XConnection > SAL_CALL OSDBCDriverManager::getConnection( const ::rtl::OUString& _rURL )… in getConnection() argument
465 _rURL in getConnection()
469 Reference< XDriver > xDriver = implGetDriverForURL(_rURL); in getConnection()
473 xConnection = xDriver->connect(_rURL, Sequence< PropertyValue >()); in getConnection()
477 _rURL in getConnection()
485 …AL_CALL OSDBCDriverManager::getConnectionWithInfo( const ::rtl::OUString& _rURL, const Sequence< P… in getConnectionWithInfo() argument
491 _rURL in getConnectionWithInfo()
495 Reference< XDriver > xDriver = implGetDriverForURL(_rURL); in getConnectionWithInfo()
499 xConnection = xDriver->connect(_rURL, _rInfo); in getConnectionWithInfo()
503 _rURL in getConnectionWithInfo()
679 Reference< XDriver > SAL_CALL OSDBCDriverManager::getDriverByURL( const ::rtl::OUString& _rURL ) th… in getDriverByURL() argument
683 _rURL in getDriverByURL()
686 Reference< XDriver > xDriver( implGetDriverForURL( _rURL ) ); in getDriverByURL()
691 _rURL in getDriverByURL()
698 Reference< XDriver > OSDBCDriverManager::implGetDriverForURL(const ::rtl::OUString& _rURL) in implGetDriverForURL() argument
703 const ::rtl::OUString sDriverFactoryName = m_aDriverConfig.getDriverFactoryName(_rURL); in implGetDriverForURL()
713 …std::unary_compose< AcceptsURL, ExtractAfterLoad >( AcceptsURL( _rURL ), ExtractAfterLoad( m_aCont… in implGetDriverForURL()
724 if ( m_aDriversBS.end() != aFind && aFind->xDriver.is() && aFind->xDriver->acceptsURL(_rURL) ) in implGetDriverForURL()
734 …std::unary_compose< AcceptsURL, ExtractDriverFromCollectionElement >( AcceptsURL( _rURL ), Extract… in implGetDriverForURL()