HomeSort by relevance Sort by last modified time
    Searched refs:DnsResolve (Results 1 - 9 of 9) sorted by null

  /external/chromium-libpac/src/
proxy_resolver_js_bindings.h 35 // Handler for "dnsResolve(host)". Returns true on success and fills
37 virtual bool DnsResolve(const std::string& host,
49 // - Use the provided host resolver to service dnsResolve().
proxy_resolver_js_bindings.cc 36 // Handler for "dnsResolve(host)".
37 virtual bool DnsResolve(const std::string& host,
proxy_resolver_v8.cc 47 // dnsResolve() | null | false | null
56 // Another difference is in how dnsResolve() and myIpAddress() are
65 // dnsResolve() | IPv4/IPv6 | IPv4 | IPv4
438 global_template->Set(ASCIILiteralToV8String("dnsResolve"),
606 // V8 callback for when "dnsResolve()" is invoked by the PAC script.
621 success = context->js_bindings_->DnsResolve(hostname, &ip_address);
  /external/chromium/net/proxy/
proxy_resolver_js_bindings_unittest.cc 113 TEST(ProxyResolverJSBindingsTest, DnsResolve) {
125 EXPECT_FALSE(bindings->DnsResolve("", &ip_address));
129 EXPECT_TRUE(bindings->DnsResolve("google.com", &ip_address));
134 EXPECT_FALSE(bindings->DnsResolve("fail", &ip_address));
162 // dnsResolve()
204 EXPECT_TRUE(bindings->DnsResolve("foo", &ip_address));
207 EXPECT_TRUE(bindings->DnsResolve("foo2", &ip_address));
250 // Call DnsResolve() 4 times for the same hostname -- this should issue
253 EXPECT_FALSE(bindings->DnsResolve("foo", &ip_address));
254 EXPECT_FALSE(bindings->DnsResolve("foo", &ip_address))
    [all...]
proxy_resolver_js_bindings.h 41 // Handler for "dnsResolve(host)". Returns true on success and fills
43 virtual bool DnsResolve(const std::string& host,
64 // - Use the provided host resolver to service dnsResolve().
proxy_resolver_js_bindings.cc 111 // Handler for "dnsResolve(host)".
112 virtual bool DnsResolve(const std::string& host,
proxy_resolver_v8.cc 49 // dnsResolve() | null | false | null
58 // Another difference is in how dnsResolve() and myIpAddress() are
67 // dnsResolve() | IPv4/IPv6 | IPv4 | IPv4
421 global_template->Set(ASCIILiteralToV8String("dnsResolve"),
595 // V8 callback for when "dnsResolve()" is invoked by the PAC script.
610 success = context->js_bindings_->DnsResolve(hostname, &ip_address);
proxy_resolver_v8_unittest.cc 45 virtual bool DnsResolve(const std::string& host, std::string* ip_address) {
419 // DnsResolve was called 8 times, however only 2 of those were string
505 // Test the return values from myIpAddress(), myIpAddressEx(), dnsResolve(),
  /external/chromium-libpac/test/
proxy_resolver_v8_unittest.cc 38 virtual bool DnsResolve(const std::string& host, std::string* ip_address) {
419 // DnsResolve was called 8 times, however only 2 of those were string
503 // Test the return values from myIpAddress(), myIpAddressEx(), dnsResolve(),

Completed in 1047 milliseconds