Searched refs:ipe (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/net/dns/
H A Daddress_sorter_win.cc59 IPEndPoint ipe = list[i]; local
61 if (ipe.GetFamily() == ADDRESS_FAMILY_IPV4) {
62 ipe = IPEndPoint(ConvertIPv4NumberToIPv6Number(ipe.address()),
63 ipe.port());
68 bool result = ipe.ToSockAddr(addr, &addr_len);
111 IPEndPoint ipe; local
112 ipe.FromSockAddr(output_buffer_->Address[i].lpSockaddr,
115 if (IsIPv4Mapped(ipe.address())) {
116 ipe
167 const IPEndPoint& ipe = list[i]; variable
[all...]
H A Ddns_config_service_win.cc276 IPEndPoint ipe; local
277 if (!ipe.FromSockAddr(address->Address.lpSockaddr,
281 if (!have_ipv4 && (ipe.GetFamily() == ADDRESS_FAMILY_IPV4)) {
283 (*hosts)[DnsHostsKey(localname, ADDRESS_FAMILY_IPV4)] = ipe.address();
284 } else if (!have_ipv6 && (ipe.GetFamily() == ADDRESS_FAMILY_IPV6)) {
286 (*hosts)[DnsHostsKey(localname, ADDRESS_FAMILY_IPV6)] = ipe.address();
491 IPEndPoint ipe; local
492 if (ipe.FromSockAddr(address->Address.lpSockaddr,
494 if (IsStatelessDiscoveryAddress(ipe.address()))
497 if (!ipe
[all...]
H A Ddns_config_service_posix.cc405 IPEndPoint ipe; local
406 if (!ipe.FromSockAddr(
411 dns_config->nameservers.push_back(ipe);
422 IPEndPoint ipe; local
434 if (!ipe.FromSockAddr(addr, addr_len))
436 dns_config->nameservers.push_back(ipe);
441 IPEndPoint ipe; local
442 if (!ipe.FromSockAddr(
447 dns_config->nameservers.push_back(ipe);
H A Ddns_config_service_win_unittest.cc105 IPEndPoint ipe(ip, info.ports[j]);
109 CHECK(ipe.ToSockAddr(address->Address.lpSockaddr, &length));
/external/chromium_org/net/base/
H A Dhost_port_pair.cc27 HostPortPair HostPortPair::FromIPEndPoint(const IPEndPoint& ipe) { argument
28 return HostPortPair(ipe.ToStringWithoutPort(), ipe.port());
H A Daddress_list.cc67 IPEndPoint ipe; local
69 if (ipe.FromSockAddr(ai->ai_addr, ai->ai_addrlen))
70 list.push_back(ipe);
H A Dhost_port_pair.h28 static HostPortPair FromIPEndPoint(const IPEndPoint& ipe);

Completed in 1291 milliseconds