HomeSort by relevance Sort by last modified time
    Searched refs:ip_address (Results 1 - 25 of 68) sorted by null

1 2 3

  /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/content/renderer/p2p/
ipc_network_manager_unittest.cc 55 rtc::IPAddress ip_address; local
104 EXPECT_TRUE(rtc::IPFromString(kIPv6PublicAddrString1, &ip_address));
105 EXPECT_EQ(networks[1]->GetIPs()[0], ip_address);
106 EXPECT_TRUE(rtc::IPFromString(kIPv6PublicAddrString2, &ip_address));
107 EXPECT_EQ(networks[1]->GetIPs()[1], ip_address);
111 EXPECT_TRUE(rtc::IPFromString(kIPv6PublicAddrString2, &ip_address));
112 EXPECT_EQ(networks[0]->GetIPs()[0], ip_address);
  /external/chromium_org/net/base/
ip_endpoint_unittest.cc 25 IPAddressNumber ip_address; member in struct:net::__anon13638::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...]
  /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_device_lister.cc 19 if (!service_description.ip_address.empty()) {
20 service->ip_address = net::IPAddressToString(
21 service_description.ip_address);
27 << service->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...]
mdns_api.cc 135 mdns_service->ip_address = (*it).ip_address;
  /external/chromium_org/third_party/webrtc/test/channel_transport/include/
channel_transport.h 46 int SetSendDestination(const char* ip_address, uint16_t rtp_port);
77 int SetSendDestination(const char* ip_address, uint16_t rtp_port);
  /external/chromium_org/extensions/browser/api/cast_channel/
cast_channel_api_unittest.cc 23 EXPECT_EQ(connect_info.ip_address, "192.0.0.1");
29 EXPECT_EQ(connect_info.ip_address, "192.0.0.1");
56 connect_info.ip_address = "192.0.0.1";
cast_channel_api.cc 66 channel_info->connect_info.ip_address = ip_endpoint.ToStringWithoutPort();
102 net::IPAddressNumber ip_address; local
103 return net::ParseIPLiteralToNumber(connect_info.ip_address, &ip_address);
229 channel_info.connect_info.ip_address = "";
291 connect_info->ip_address = ip_address_str;
301 net::IPAddressNumber ip_address; local
302 CHECK(net::ParseIPLiteralToNumber(connect_info.ip_address, &ip_address));
303 return new net::IPEndPoint(ip_address, connect_info.port)
    [all...]
  /external/chromium_org/chrome/browser/local_discovery/
device_description.h 46 net::IPAddressNumber ip_address; member in struct:local_discovery::DeviceDescription
device_description.cc 46 ip_address = service_description.ip_address;
privet_device_lister_unittest.cc 193 service_description_.ip_address.push_back(1);
194 service_description_.ip_address.push_back(2);
195 service_description_.ip_address.push_back(3);
196 service_description_.ip_address.push_back(4);
239 EXPECT_EQ(service_description_.ip_address, outgoing_description.ip_address);
  /external/chromium_org/third_party/webrtc/test/channel_transport/
channel_transport.cc 78 int VoiceChannelTransport::SetSendDestination(const char* ip_address,
80 return socket_transport_->InitializeSendSockets(ip_address, rtp_port);
131 int VideoChannelTransport::SetSendDestination(const char* ip_address,
133 return socket_transport_->InitializeSendSockets(ip_address, rtp_port);
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host_tcp_unittest.cc 45 dest_.ip_address = ParseAddress(kTestIpAddress1, kTestPort1);
95 socket_host_->Send(dest_.ip_address, packet1, options, 0);
99 socket_host_->Send(dest_.ip_address, packet2, options, 0);
103 socket_host_->Send(dest_.ip_address, packet3, options, 0);
127 socket_host_->Send(dest_.ip_address, packet1, options, 0);
131 socket_host_->Send(dest_.ip_address, packet2, options, 0);
135 socket_host_->Send(dest_.ip_address, packet3, options, 0);
174 socket_host_->Send(dest_.ip_address, packet, options, 0);
201 socket_host_->Send(dest_.ip_address, packet, options, 0);
225 socket_host_->Send(dest_.ip_address, packet1, options, 0)
    [all...]
socket_host_tcp.cc 71 remote_address_.ip_address = remote_address;
89 if (remote_address.ip_address.address().empty()) {
95 remote_address.ip_address);
192 if (!remote_address_.ip_address.address().empty()) {
193 net::HostPortPair::FromIPEndPoint(remote_address_.ip_address);
195 dest_host_port_pair.set_port(remote_address_.ip_address.port());
264 if (remote_address_.ip_address.address().empty()) {
266 remote_address_.ip_address = remote_address;
314 << remote_address_.ip_address.ToString()
323 id_, remote_address_.ip_address, data, base::TimeTicks::Now()))
    [all...]
  /external/chromium_org/chromeos/dbus/
fake_debug_daemon_client.h 46 virtual void TestICMP(const std::string& ip_address,
49 const std::string& ip_address,
debug_daemon_client.h 136 // Tests ICMP connectivity to a specified host. The |ip_address| contains the
138 virtual void TestICMP(const std::string& ip_address,
141 // Tests ICMP connectivity to a specified host. The |ip_address| contains the
144 const std::string& ip_address,
  /external/chromium_org/tools/usb_gadget/
__main__.py 47 ip_address = addrs[netifaces.AF_INET][0]['addr']
48 server.address = '{}:{}'.format(ip_address, server.port)
  /external/chromium_org/chromeos/network/
network_change_notifier_chromeos_unittest.cc 32 const char* ip_address; member in struct:chromeos::__anon10799::NotifierState
41 const char* ip_address; member in struct:chromeos::__anon10799::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_change_notifier_chromeos.cc 159 if (default_network->ip_address() != ip_address_) {
177 default_network->ip_address().c_str()));
191 ip_address_ = default_network->ip_address();
  /external/chromium_org/chrome/tools/service_discovery_sniffer/
service_discovery_sniffer.cc 60 if (service.ip_address != net::IPAddressNumber()) {
62 service.ip_address).c_str());
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/testbed/
tb_video_channel.cc 56 const char* ip_address) {
57 EXPECT_EQ(0, channel_transport_->SetSendDestination(ip_address, rtp_port));
  /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/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;

Completed in 548 milliseconds

1 2 3