HomeSort by relevance Sort by last modified time
    Searched defs:ipv4 (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
inet.py 20 import dns.ipv4 namespace
50 return dns.ipv4.inet_aton(text)
68 return dns.ipv4.inet_ntoa(address)
83 junk = dns.ipv4.inet_aton(text)
100 first = ord(dns.ipv4.inet_aton(text)[0])
ipv6.py 21 import dns.ipv4 namespace
79 # We have an embedded IPv4 address
84 hex = prefix + dns.ipv4.inet_ntoa(address[12:])
reversename.py 18 @var ipv4_reverse_domain: The DNS IPv4 reverse-map domain, in-addr.arpa.
26 import dns.ipv4 namespace
32 """Convert an IPv4 or IPv6 address in textual form into a Name object whose
34 @param text: an IPv4 or IPv6 address in textual form (e.g. '127.0.0.1',
43 parts = ['%d' % ord(byte) for byte in dns.ipv4.inet_aton(text)]
50 @param name: an IPv4 or IPv6 address in reverse-map form.
60 return dns.ipv4.inet_ntoa(dns.ipv4.inet_aton(text))
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/IN/
A.py 17 import dns.ipv4 namespace
24 @ivar address: an IPv4 address
32 junk = dns.ipv4.inet_aton(address)
46 file.write(dns.ipv4.inet_aton(self.address))
49 address = dns.ipv4.inet_ntoa(wire[current : current + rdlen])
55 sa = dns.ipv4.inet_aton(self.address)
56 oa = dns.ipv4.inet_aton(other.address)
WKS.py 19 import dns.ipv4 namespace
88 file.write(dns.ipv4.inet_aton(self.address))
94 address = dns.ipv4.inet_ntoa(wire[current : current + 4])
104 sa = dns.ipv4.inet_aton(self.address)
105 oa = dns.ipv4.inet_aton(other.address)
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
address.hpp 42 /// Construct an address from an IPv4 address.
60 /// Assign from an IPv4 address.
71 return type_ == ipv4;
92 /// Create an address from an IPv4 address string in dotted decimal form,
96 /// Create an address from an IPv4 address string in dotted decimal form,
101 /// Create an address from an IPv4 address string in dotted decimal form,
105 /// Create an address from an IPv4 address string in dotted decimal form,
151 enum { ipv4, ipv6 } type_; enumerator in enum:asio::ip::address::__anon21912
153 // The underlying IPv4 address.
  /external/avahi/avahi-common/
address.h 40 AVAHI_PROTO_INET = 0, /**< IPv4 */
59 /** An IPv4 address */
75 AvahiIPv4Address ipv4; /**< Address when IPv4 */ member in union:AvahiAddress::__anon6490
100 /** Generate the DNS reverse lookup name for an IPv4 or IPv6 address. */
112 /** Return a textual representation of the specified protocol number. i.e. "IPv4", "IPv6" or "UNSPEC" */
  /external/android-clat/
config.c 95 * locates the config item, parses the ipv4 address, and returns the pointer ret_val_ptr, or NULL on failure
112 logmsg(ANDROID_LOG_FATAL,"invalid IPv4 address specified for %s: %s", item_name, tmp);
190 * picks a random interface ID that is checksum neutral with the IPv4 address and the NAT64 prefix
192 * ipv4_local_subnet - clat IPv4 address
201 // checksum(Local IPv4 | Remote IPv4) = checksum(Local IPv6 | Remote IPv6)
202 // in other words (because remote IPv6 = NAT64 prefix | Remote IPv4):
203 // checksum(Local IPv4) = checksum(Local IPv6 | NAT64 prefix)
240 * picks a free IPv4 address, starting from ip and trying all addresses in the prefix in order
243 * returns: the IPv4 address, or INADDR_NONE if no addresses were availabl
255 in_addr_t ipv4 = ntohl(ip->s_addr); local
    [all...]
  /external/c-ares/
inet_net_pton.c 58 * convert IPv4 network number from presentation to network format.
64 * not an IPv4 network specification.
290 int ipv4; local
304 ipv4 = 0;
340 ipv4 = 1;
359 if (ipv4)
  /external/webrtc/webrtc/base/
ipaddress.cc 94 // IPv4 is 'less than' IPv6
232 in_addr ipv4; local
233 ::memcpy(&ipv4.s_addr, &in6.s6_addr[12], sizeof(ipv4.s_addr));
234 return ipv4;
  /external/guava/guava-tests/test/com/google/common/net/
InetAddressesTest.java 175 // Don't need to test IPv4 much; it just calls getHostAddress().
384 * from an "IPv4 mapped" IPv6 address. Our String-based method can
445 InetAddress ipv4 = InetAddresses.forString(ipv4Str); local
448 assertEquals(ipv4, InetAddresses.get6to4IPv4Address((Inet6Address) ip));
501 InetAddress ipv4 = InetAddresses.forString("1.2.3.4"); local
522 assertEquals("checking '" + validIsatapAddresses[i] + "'", ipv4,
552 InetAddress ipv4 = InetAddresses.forString("1.2.3.4"); local
553 assertEquals(ipv4, InetAddresses.getEmbeddedIPv4ClientAddress(testIp));
558 ipv4 = InetAddresses.forString("1.2.3.4");
559 assertEquals(ipv4, InetAddresses.getEmbeddedIPv4ClientAddress(testIp))
    [all...]
  /external/libmicrohttpd/src/spdy2http/
proxy.c 70 bool ipv4; member in struct:global_options
947 if(glob_opt.ipv4 && !glob_opt.ipv6)
949 else if(glob_opt.ipv6 && !glob_opt.ipv4)
1281 " -4, --curl-ipv4 Curl may use IPv4 to connect to the final destination.\n"
1283 " If neither --curl-ipv4 nor --curl-ipv6 is set,\n"
    [all...]
  /external/libmicrohttpd/src/microhttpd/
daemon.c 193 * IPv4 address.
195 struct in_addr ipv4; member in union:MHD_IPCount::__anon15884
272 /* IPv4 addresses */
277 memcpy (&key->addr.ipv4, &addr4->sin_addr, sizeof(addr4->sin_addr));
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_location_GnssLocationProvider.cpp 305 ALOGE("Unable to allocate byte array for IPv4 address");
309 jbyte ipv4[4]; local
311 ALOGV("Converting IPv4 address(net_order) %x", ip);
312 memcpy(ipv4, &ip, sizeof(ipv4));
314 ALOGV("Converting IPv4 address(host_order) %x", ip);
316 ipv4[0] = (jbyte) (ip & 0xFF);
317 ipv4[1] = (jbyte)((ip>>8) & 0xFF);
318 ipv4[2] = (jbyte)((ip>>16) & 0xFF);
319 ipv4[3] = (jbyte) (ip>>24)
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-1240/
loc_api_common.h 231 rpc_loc_server_addr_ipv4_type ipv4; member in union:rpc_loc_server_addr_u_type::__anon32799
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-3200/
loc_api_common.h 222 rpc_loc_server_addr_ipv4_type ipv4; member in union:rpc_loc_server_addr_u_type::__anon32814
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/inc/
loc_api_rpcgen_common_rpc.h 254 rpc_loc_server_addr_ipv4_type ipv4; member in union:rpc_loc_server_addr_u_type::__anon32833
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/inc-1240/
loc_api_common.h 231 rpc_loc_server_addr_ipv4_type ipv4; member in union:rpc_loc_server_addr_u_type::__anon32885
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/inc-3200/
loc_api_common.h 222 rpc_loc_server_addr_ipv4_type ipv4; member in union:rpc_loc_server_addr_u_type::__anon32900
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/inc/
loc_api_rpcgen_common_rpc.h 254 rpc_loc_server_addr_ipv4_type ipv4; member in union:rpc_loc_server_addr_u_type::__anon32919
    [all...]
  /hardware/qcom/gps/msm8909/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/inc/
loc_api_rpcgen_common_rpc.h 254 rpc_loc_server_addr_ipv4_type ipv4; member in union:rpc_loc_server_addr_u_type::__anon32977
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc/inc-1240/
loc_api_common.h 231 rpc_loc_server_addr_ipv4_type ipv4; member in union:rpc_loc_server_addr_u_type::__anon33062
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc/inc-3200/
loc_api_common.h 222 rpc_loc_server_addr_ipv4_type ipv4; member in union:rpc_loc_server_addr_u_type::__anon33077
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/inc/
loc_api_rpcgen_common_rpc.h 254 rpc_loc_server_addr_ipv4_type ipv4; member in union:rpc_loc_server_addr_u_type::__anon33096
    [all...]
  /hardware/qcom/gps/msm8996/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/inc/
loc_api_rpcgen_common_rpc.h 254 rpc_loc_server_addr_ipv4_type ipv4; member in union:rpc_loc_server_addr_u_type::__anon33154
    [all...]

Completed in 1134 milliseconds

1 2