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 105 service.ip_address = ip_address1;
117 service.ip_address = ip_address2;
122 service.ip_address = ip_address1;
124 service.ip_address = ip_address2;
134 service.ip_address = "192.168.0.100";
157 service.ip_address = "192.168.0.100";
161 service.ip_address = "192.168.0.101";
182 service.ip_address = "192.168.0.100";
186 service.ip_address = "192.168.0.101";
207 const std::string ip_address = "192.168.0.100" local
    [all...]
  /external/chromium_org/chrome/browser/local_discovery/
device_description.h 46 net::IPAddressNumber ip_address; member in struct:local_discovery::DeviceDescription
  /external/chromium_org/net/base/
ip_endpoint_unittest.cc 25 IPAddressNumber ip_address; member in struct:net::__anon13041::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::__anon13014::TestData
126 ASSERT_TRUE(ParseIPLiteralToNumber(tests[i].ip_address, &ip_number));
  /external/chromium_org/content/common/
p2p_socket_type.h 39 // Port number will be part of |ip_address|.
43 const net::IPEndPoint& ip_address)
44 : hostname(hostname), ip_address(ip_address) {
48 net::IPEndPoint ip_address; member in struct:content::P2PHostAndIPEndPoint
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest_base.cc 154 const char* ip_address = "127.0.0.1\0"; local
164 ASSERT_EQ(0, video_channel_transport_1->SetSendDestination(ip_address,
173 ASSERT_EQ(0, video_channel_transport_3->SetSendDestination(ip_address,
vie_autotest_codec.cc 190 const char* ip_address = "127.0.0.1"; local
197 ASSERT_EQ(0, video_channel_transport->SetSendDestination(ip_address,
336 const char* ip_address = "127.0.0.1"; local
343 ASSERT_EQ(0, video_channel_transport->SetSendDestination(ip_address,
386 const char* ip_address = "127.0.0.1"; local
394 ASSERT_EQ(0, video_channel_transport_1->SetSendDestination(ip_address,
402 ASSERT_EQ(0, video_channel_transport_2->SetSendDestination(ip_address,
    [all...]
vie_autotest_custom_call.cc 266 std::string ip_address; local
293 ip_address = GetIPAddress();
340 PrintCallInformation(ip_address.c_str(), device_name, unique_id,
364 error = voice_channel_transport->SetSendDestination(ip_address.c_str(),
500 error = video_channel_transport->SetSendDestination(ip_address.c_str(),
623 PrintCallInformation(ip_address.c_str(), device_name,
641 PrintCallInformation(ip_address.c_str(), device_name,
659 PrintCallInformation(ip_address.c_str(), device_name,
    [all...]
  /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/chrome/browser/extensions/api/cast_channel/
cast_channel_api.cc 56 channel_info->connect_info.ip_address = ip_endpoint.ToStringWithoutPort();
241 connect_info->ip_address = ip_address_str;
251 net::IPAddressNumber ip_address; local
252 if (!net::ParseIPLiteralToNumber(connect_info.ip_address, &ip_address)) {
263 return new net::IPEndPoint(ip_address, connect_info.port);
  /external/chromium_org/chromeos/network/
network_change_notifier_chromeos_unittest.cc 32 const char* ip_address; member in struct:chromeos::__anon10685::NotifierState
41 const char* ip_address; member in struct:chromeos::__anon10685::DefaultNetworkState
112 notifier_.ip_address_ = notifier_state.ip_address;
121 EXPECT_EQ(notifier_state.ip_address, notifier_.ip_address_);
139 default_network_.ip_address_ = default_network_state.ip_address;
network_state.h 71 const std::string& ip_address() const { return ip_address_; } function in class:chromeos::NetworkState
shill_property_handler_unittest.cc 419 base::StringValue ip_address("192.168.1.1");
422 shill::kAddressProperty, ip_address, local
  /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/media/cast/test/
receiver.cc 80 std::string ip_address = input.GetStringInput(); local
82 while (ip_address != DEFAULT_SEND_IP &&
83 std::count(ip_address.begin(), ip_address.end(), '.') != 3) {
84 ip_address = input.GetStringInput();
86 return ip_address;
  /external/chromium-libpac/src/
proxy_resolver_v8.cc 320 // Handler for "isInNetEx(ip_address, ip_prefix)". |ip_address| is a string
327 bool IsInNetEx(const std::string& ip_address, const std::string& ip_prefix) {
330 if (RemoveChars(ip_address, " \t", &cleaned_ip_address))
332 if (!ParseIPLiteralToNumber(ip_address, &address))
623 std::string ip_address; local
628 success = context->js_bindings_->DnsResolve(hostname, &ip_address);
632 args.GetReturnValue().Set(ASCIIStringToV8String(args.GetIsolate(), ip_address));
693 std::string ip_address = V8StringToUTF8(args[0]->ToString()); local
695 args.GetReturnValue().Set(IsInNetEx(ip_address, ip_prefix))
    [all...]
  /external/chromium_org/chrome/browser/chromeos/status/
network_menu.cc 616 std::string ip_address = default_network->ip_address(); local
617 if (!ip_address.empty()) {
619 ui::MenuModel::TYPE_COMMAND, base::ASCIIToUTF16(ip_address),
  /external/chromium_org/content/browser/devtools/
devtools_http_handler_impl.cc 221 net::IPEndPoint ip_address; local
222 if (server_->GetLocalAddress(&ip_address))
224 return GURL(std::string("http://") + ip_address.ToString() + frontend_url_);
  /external/chromium_org/net/proxy/
proxy_resolver_v8.cc 313 // Handler for "isInNetEx(ip_address, ip_prefix)". |ip_address| is a string
320 bool IsInNetEx(const std::string& ip_address, const std::string& ip_prefix) {
322 if (!ParseIPLiteralToNumber(ip_address, &address))
688 std::string ip_address = V8StringToUTF8(args[0]->ToString()); local
689 if (!base::IsStringASCII(ip_address)) {
698 args.GetReturnValue().Set(IsInNetEx(ip_address, ip_prefix));
  /external/chromium_org/net/quic/crypto/
quic_crypto_server_config.cc 1343 IPAddressNumber ip_address = ip.address(); local
1371 IPAddressNumber ip_address = ip.address(); local
    [all...]
  /hardware/ril/include/telephony/
ril_cdma_sms.h 787 RIL_CDMA_SMS_IpAddress ip_address; member in struct:__anon41744
  /external/libmtp/src/
ptp.h 1047 uint32_t ip_address; member in struct:_PTPNIKONWifiProfile
    [all...]

Completed in 1403 milliseconds