Home
last modified time | relevance | path

Searched refs:pac_string (Results 1 – 16 of 16) sorted by relevance

/external/chromium/net/proxy/
Dproxy_info.h41 void UsePacString(const std::string& pac_string) { in UsePacString() argument
42 proxy_list_.SetFromPacString(pac_string); in UsePacString()
Dproxy_server.cc143 ProxyServer ProxyServer::FromPacString(const std::string& pac_string) { in FromPacString() argument
144 return FromPacString(pac_string.begin(), pac_string.end()); in FromPacString()
Dproxy_list.cc89 void ProxyList::SetFromPacString(const std::string& pac_string) { in SetFromPacString() argument
90 StringTokenizer entry_tok(pac_string, ";"); in SetFromPacString()
Dproxy_list.h54 void SetFromPacString(const std::string& pac_string);
Dproxy_service.cc134 ProxyResolverFromPacString(const std::string& pac_string) in ProxyResolverFromPacString() argument
136 pac_string_(pac_string) {} in ProxyResolverFromPacString()
489 const std::string& pac_string) { in CreateFixedFromPacResult() argument
497 new ProxyResolverFromPacString(pac_string)); in CreateFixedFromPacResult()
Dproxy_server.h103 static ProxyServer FromPacString(const std::string& pac_string);
Dproxy_service.h207 static ProxyService* CreateFixedFromPacResult(const std::string& pac_string);
/external/chromium_org/net/proxy/
Dproxy_info.cc52 void ProxyInfo::UsePacString(const std::string& pac_string) { in UsePacString() argument
54 proxy_list_.SetFromPacString(pac_string); in UsePacString()
Dproxy_server.cc142 ProxyServer ProxyServer::FromPacString(const std::string& pac_string) { in FromPacString() argument
143 return FromPacString(pac_string.begin(), pac_string.end()); in FromPacString()
Dproxy_list.h76 void SetFromPacString(const std::string& pac_string);
Dproxy_list.cc131 void ProxyList::SetFromPacString(const std::string& pac_string) { in SetFromPacString() argument
132 base::StringTokenizer entry_tok(pac_string, ";"); in SetFromPacString()
Dproxy_info.h47 void UsePacString(const std::string& pac_string);
Dproxy_server.h103 static ProxyServer FromPacString(const std::string& pac_string);
Dproxy_service.cc214 explicit ProxyResolverFromPacString(const std::string& pac_string) in ProxyResolverFromPacString() argument
216 pac_string_(pac_string) {} in ProxyResolverFromPacString()
941 const std::string& pac_string) { in CreateFixedFromPacResult() argument
949 new ProxyResolverFromPacString(pac_string)); in CreateFixedFromPacResult()
Dproxy_service.h244 static ProxyService* CreateFixedFromPacResult(const std::string& pac_string);
/external/chromium_org/net/http/
Dhttp_network_layer_unittest.cc489 std::string pac_string = base::StringPrintf( in TEST_F() local
500 ProxyService::CreateFixedFromPacResult(pac_string)); in TEST_F()