OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MyIpAddress
(Results
1 - 9
of
9
) sorted by null
/external/chromium-libpac/src/
proxy_resolver_js_bindings.h
23
// Handler for "
myIpAddress
()". Returns true on success and fills
25
virtual bool
MyIpAddress
(std::string* first_ip_address) = 0;
proxy_resolver_js_bindings.cc
24
// Handler for "
myIpAddress
()".
27
virtual bool
MyIpAddress
(std::string* first_ip_address) {
proxy_resolver_v8.cc
46
//
myIpAddress
() | "127.0.0.1" | ??? | "127.0.0.1"
56
// Another difference is in how dnsResolve() and
myIpAddress
() are
64
//
myIpAddress
() | IPv4/IPv6 | IPv4 | IPv4
433
global_template->Set(ASCIILiteralToV8String("
myIpAddress
"),
563
// V8 callback for when "
myIpAddress
()" is invoked by the PAC script.
576
success = context->js_bindings_->
MyIpAddress
(&result);
/external/chromium/net/proxy/
proxy_resolver_js_bindings.h
29
// Handler for "
myIpAddress
()". Returns true on success and fills
31
virtual bool
MyIpAddress
(std::string* first_ip_address) = 0;
proxy_resolver_js_bindings_unittest.cc
140
TEST(ProxyResolverJSBindingsTest,
MyIpAddress
) {
150
EXPECT_TRUE(bindings->
MyIpAddress
(&my_ip_address));
161
//
myIpAddress
()
201
EXPECT_TRUE(bindings->
MyIpAddress
(&ip_address));
314
bindings->
MyIpAddress
(&ip_address);
proxy_resolver_js_bindings.cc
81
// Handler for "
myIpAddress
()".
84
virtual bool
MyIpAddress
(std::string* first_ip_address) {
proxy_resolver_v8.cc
48
//
myIpAddress
() | "127.0.0.1" | ??? | "127.0.0.1"
58
// Another difference is in how dnsResolve() and
myIpAddress
() are
66
//
myIpAddress
() | IPv4/IPv6 | IPv4 | IPv4
416
global_template->Set(ASCIILiteralToV8String("
myIpAddress
"),
552
// V8 callback for when "
myIpAddress
()" is invoked by the PAC script.
565
success = context->js_bindings_->
MyIpAddress
(&result);
proxy_resolver_v8_unittest.cc
33
virtual bool
MyIpAddress
(std::string* ip_address) {
425
//
MyIpAddress
was called two times.
437
// Test calling a binding (
myIpAddress
()) from the script's global scope.
447
//
myIpAddress
() got called during initialization of the script.
505
// Test the return values from
myIpAddress
(), myIpAddressEx(), dnsResolve(),
/external/chromium-libpac/test/
proxy_resolver_v8_unittest.cc
26
virtual bool
MyIpAddress
(std::string* ip_address) {
425
//
MyIpAddress
was called two times.
437
// Test calling a binding (
myIpAddress
()) from the script's global scope.
447
//
myIpAddress
() got called during initialization of the script.
503
// Test the return values from
myIpAddress
(), myIpAddressEx(), dnsResolve(),
Completed in 4535 milliseconds