Lines Matching refs:rHost
142 bool shouldUseProxy( const rtl::OUString & rHost,
156 const rtl::OUString & rHost,
436 bool InternetProxyDecider_Impl::shouldUseProxy( const rtl::OUString & rHost, in shouldUseProxy() argument
442 if ( ( rHost.indexOf( ':' ) != -1 ) && in shouldUseProxy()
443 ( rHost[ 0 ] != sal_Unicode( '[' ) ) ) in shouldUseProxy()
447 aBuffer.append( rHost ); in shouldUseProxy()
453 aBuffer.append( rHost ); in shouldUseProxy()
486 const rtl::OUString & rHost, in getProxy() argument
497 if ( rHost.getLength() && m_aNoProxyList.size() ) in getProxy()
503 if ( !shouldUseProxy( rHost, nPort, false ) ) in getProxy()
512 if ( ( rHost[ 0 ] == sal_Unicode( '[' ) ) && in getProxy()
513 ( rHost.getLength() > 1 ) ) in getProxy()
517 aHost = rHost.copy( 1, rHost.getLength() - 2 ); in getProxy()
521 aHost = rHost; in getProxy()
844 const rtl::OUString & rHost, in shouldUseProxy() argument
848 rHost, in shouldUseProxy()
856 const rtl::OUString & rHost, in getProxy() argument
859 return m_pImpl->getProxy( rProtocol, rHost, nPort ); in getProxy()