HomeSort by relevance Sort by last modified time
    Searched defs:ip_address (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/mdns/
dns_sd_delegate.h 16 std::string ip_address; member in struct:extensions::DnsSdService
25 ip_address == other.ip_address &&
dns_sd_registry_unittest.cc 106 service.ip_address = ip_address1;
118 service.ip_address = ip_address2;
123 service.ip_address = ip_address1;
125 service.ip_address = ip_address2;
135 service.ip_address = "192.168.0.100";
158 service.ip_address = "192.168.0.100";
162 service.ip_address = "192.168.0.101";
183 service.ip_address = "192.168.0.100";
187 service.ip_address = "192.168.0.101";
208 const std::string ip_address = "192.168.0.100" local
    [all...]
  /external/chromium/net/base/
ip_endpoint_unittest.cc 25 IPAddressNumber ip_address; member in struct:net::__anon2660::TestData
40 &tests[index].ip_address));
50 IPEndPoint endpoint(tests[index].ip_address, 80);
52 EXPECT_EQ(tests[index].ip_address, endpoint.address());
58 IPEndPoint src(tests[index].ip_address, index);
68 IPEndPoint src(tests[index].ip_address, index);
78 IPEndPoint ip_endpoint(tests[index].ip_address, index);
102 IPEndPoint ip_endpoint(tests[index].ip_address, index);
113 IPEndPoint src(tests[index].ip_address, index);
121 IPEndPoint ip_endpoint1(tests[0].ip_address, 100)
    [all...]
address_list_unittest.cc 179 std::string ip_address; member in struct:net::__anon2625::TestData
193 LOG(WARNING) << "Unable to resolve ip literal '" << tests[i].ip_address
201 ParseIPLiteralToNumber(tests[i].ip_address, &ip_number);
220 std::string ip_address; member in struct:net::__anon2625::TestData
234 LOG(WARNING) << "Unable to resolve ip literal '" << tests[i].ip_address
  /external/chromium_org/net/base/
ip_endpoint_unittest.cc 25 IPAddressNumber ip_address; member in struct:net::__anon8880::TestData
40 &tests[index].ip_address));
50 IPEndPoint endpoint(tests[index].ip_address, 80);
52 EXPECT_EQ(tests[index].ip_address, endpoint.address());
58 IPEndPoint src(tests[index].ip_address, index);
68 IPEndPoint src(tests[index].ip_address, index);
78 IPEndPoint ip_endpoint(tests[index].ip_address, index);
101 IPEndPoint ip_endpoint(tests[index].ip_address, index);
120 IPEndPoint src(tests[index].ip_address, index);
128 IPEndPoint ip_endpoint1(tests[0].ip_address, 100)
    [all...]
address_list_unittest.cc 91 std::string ip_address; member in struct:net::__anon8852::TestData
126 ASSERT_TRUE(ParseIPLiteralToNumber(tests[i].ip_address, &ip_number));
  /external/chromium/net/proxy/
proxy_resolver_js_bindings_unittest.cc 120 std::string ip_address; local
125 EXPECT_FALSE(bindings->DnsResolve("", &ip_address));
129 EXPECT_TRUE(bindings->DnsResolve("google.com", &ip_address));
130 EXPECT_EQ("192.168.1.1", ip_address);
134 EXPECT_FALSE(bindings->DnsResolve("fail", &ip_address));
199 std::string ip_address; local
201 EXPECT_TRUE(bindings->MyIpAddress(&ip_address));
202 EXPECT_EQ("192.168.1.2", ip_address); // IPv4 restricted.
204 EXPECT_TRUE(bindings->DnsResolve("foo", &ip_address));
205 EXPECT_EQ("192.168.1.1", ip_address); // IPv4 restricted
248 std::string ip_address; local
306 std::string ip_address; local
    [all...]
  /external/chromium_org/chrome/browser/local_discovery/
privet_device_lister.h 41 net::IPAddressNumber ip_address; member in struct:local_discovery::DeviceDescription
  /external/chromium_org/chrome/common/local_discovery/
service_discovery_client.h 41 net::IPAddressNumber ip_address; member in struct:local_discovery::ServiceDescription
  /external/chromium_org/chromeos/network/
network_change_notifier_chromeos_unittest.cc 32 const char* ip_address; member in struct:chromeos::__anon7238::NotifierState
41 const char* ip_address; member in struct:chromeos::__anon7238::DefaultNetworkState
112 notifier_.ip_address_ = notifier_state.ip_address;
121 EXPECT_EQ(notifier_state.ip_address, notifier_.ip_address_);
138 default_network_.ip_address_ = default_network_state.ip_address;
network_state.h 62 const std::string& ip_address() const { return ip_address_; } function in class:chromeos::NetworkState
shill_property_handler_unittest.cc 420 base::StringValue ip_address("192.168.1.1");
423 shill::kAddressProperty, ip_address, local
  /external/chromium_org/media/cast/test/
receiver.cc 68 std::string ip_address = input.GetStringInput(); local
70 while (std::count(ip_address.begin(), ip_address.end(), '.') != 3) {
71 ip_address = input.GetStringInput();
73 return ip_address;
252 std::string ip_address = media::cast::GetIpAddress("Enter destination IP."); local
254 transport->SetLocalReceiver(packet_receiver, ip_address, local_ip_address,
256 transport->SetSendDestination(ip_address, send_to_port);
sender.cc 79 std::string ip_address = input.GetStringInput(); local
81 while (std::count(ip_address.begin(), ip_address.end(), '.') != 3) {
82 ip_address = input.GetStringInput();
84 return ip_address;
345 std::string ip_address = media::cast::GetIpAddress("Enter destination IP."); local
349 transport->SetLocalReceiver(packet_receiver, ip_address, local_ip_address,
351 transport->SetSendDestination(ip_address, send_to_port);
  /external/chromium/chrome/browser/chromeos/status/
network_menu.h 42 std::string ip_address; member in struct:chromeos::NetworkMenuModel::NetworkInfo
network_menu.cc 781 std::string ip_address = cros->IPAddress(); local
782 if (!ip_address.empty()) {
    [all...]
  /external/chromium_org/jingle/glue/
chrome_async_socket_unittest.cc 467 talk_base::IPAddress ip_address; local
468 EXPECT_TRUE(talk_base::IPFromString("127.0.0.1", &ip_address));
469 const talk_base::SocketAddress no_hostname_addr(ip_address, addr_.port());
    [all...]
  /external/chromium_org/chrome/browser/chromeos/status/
network_menu.cc 618 std::string ip_address = default_network->ip_address(); local
619 if (!ip_address.empty()) {
621 ASCIIToUTF16(ip_address), gfx::ImageSkia(), std::string(),
  /external/chromium_org/content/browser/devtools/
devtools_http_handler_impl.cc 215 net::IPEndPoint ip_address; local
216 if (server_->GetLocalAddress(&ip_address))
218 return GURL(std::string("http://") + ip_address.ToString() +
  /external/chromium_org/net/proxy/
proxy_resolver_v8.cc 312 // Handler for "isInNetEx(ip_address, ip_prefix)". |ip_address| is a string
319 bool IsInNetEx(const std::string& ip_address, const std::string& ip_prefix) {
321 if (!ParseIPLiteralToNumber(ip_address, &address))
692 std::string ip_address = V8StringToUTF8(args[0]->ToString()); local
693 if (!IsStringASCII(ip_address)) {
702 args.GetReturnValue().Set(IsInNetEx(ip_address, ip_prefix));
  /external/chromium/chrome/browser/chromeos/cros/
network_library.h 281 const std::string& ip_address() const { return ip_address_; } function in class:chromeos::Network
    [all...]
  /hardware/ril/include/telephony/
ril_cdma_sms.h 787 RIL_CDMA_SMS_IpAddress ip_address; member in struct:__anon32161
  /external/libmtp/src/
ptp.h 1047 uint32_t ip_address; member in struct:_PTPNIKONWifiProfile
    [all...]

Completed in 335 milliseconds