/external/chromium_org/content/browser/renderer_host/p2p/ |
socket_host_test_utils.h | 292 net::IPAddressNumber ip; local 293 EXPECT_TRUE(net::ParseIPLiteralToNumber(ip_str, &ip)); 294 return net::IPEndPoint(ip, port);
|
/external/chromium_org/net/quic/ |
quic_http_stream_test.cc | 123 IPAddressNumber ip; local 124 CHECK(ParseIPLiteralToNumber("192.0.2.33", &ip)); 125 peer_addr_ = IPEndPoint(ip, 443); 126 self_addr_ = IPEndPoint(ip, 8435);
|
/external/chromium_org/net/tools/gdig/ |
gdig.cc | 44 std::string ip; local 46 if (!ParseHostAndPort(ip_address_and_port, &ip, &port)) 52 if (!net::ParseIPLiteralToNumber(ip, &ip_number))
|
/external/chromium_org/third_party/freetype/src/psaux/ |
t1decode.c | 361 FT_Byte* ip; local 410 ip = zone->cursor = zone->base; 424 while ( ip < limit ) 449 switch ( *ip++ ) 509 if ( ip > limit ) 516 switch ( *ip++ ) 549 ip[-1] )); 555 if ( ip + 4 > limit ) 562 value = (FT_Int32)( ( (FT_Long)ip[0] << 24 ) | 563 ( (FT_Long)ip[1] << 16 ) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
natsocketfactory.cc | 41 const IPAddress& ip = remote_addr.ipaddr(); local 42 int family = ip.family(); 49 in_addr v4addr = ip.ipv4_address(); 54 in6_addr v6addr = ip.ipv6_address(); 463 // See if we have the requested IP, or any of our children do.
|
network.cc | 164 // This network exists in the map already. Reset its IP addresses. 191 IPAddress ip; local 200 ip = IPAddress( 208 ip = IPAddress( 224 prefix = TruncateIP(ip, prefix_length); 234 network->AddIP(ip); 242 (*existing_network).second->AddIP(ip); 265 const IPAddress& ip, IPAddress* prefix) { 272 prefixlist->Address.lpSockaddr->sa_family != ip.family()) { 294 if (TruncateIP(ip, prefixlist->PrefixLength) == current_prefix & 344 IPAddress ip; local [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/comp/ |
c_zlib.c | 717 int ret, *ip; local 741 ip = ptr; 742 if (*ip == 0)
|
/external/clang/test/SemaCXX/ |
cstyle-cast.cpp | 199 int *ip = (int*)(icpcpp); local 200 (void)(int const*)(ip);
|
/external/dhcpcd/ |
net.c | 43 #include <netinet/ip.h> 673 struct ip ip; member in struct:udp_dhcp_packet 707 struct ip *ip; local 711 ip = &udpp->ip; 716 * ip structure and an invalid ip_len (basically udp length). 719 * Finally we complete the ip structure and ip checksum [all...] |
/external/dnsmasq/src/ |
dhcp.c | 568 then 192.168.0.255 is a valid IP address, but not for Windows as it's 723 char *ip, *cp; local 767 for (ip = buff; *ip && !isspace((int)*ip); ip++); 768 for(; *ip && isspace((int)*ip); ip++) 769 *ip = 0 [all...] |
/external/freetype/src/psaux/ |
t1decode.c | 367 FT_Byte* ip; local 416 ip = zone->cursor = zone->base; 430 while ( ip < limit ) 455 switch ( *ip++ ) 515 if ( ip > limit ) 522 switch ( *ip++ ) 555 ip[-1] )); 561 if ( ip + 4 > limit ) 568 value = (FT_Int32)( ( (FT_UInt32)ip[0] << 24 ) | 569 ( (FT_UInt32)ip[1] << 16 ) [all...] |
/external/grub/netboot/ |
main.c | 50 /* Set if an ethernet card is probed and IP addresses are set. */ 110 static unsigned short ipchksum (unsigned short *ip, int len); 131 DEFAULT_NETMASK - Return default netmask for IP address 147 ifconfig (char *ip, char *sm, char *gw, char *svr) 159 if (ip) 161 if (! inet_aton (ip, &arptable[ARP_CLIENT].ipaddr)) 180 if (ip || sm) 201 struct iphdr *ip; local 207 ip = (struct iphdr *) buf; 209 ip->verhdrlen = 0x45 538 struct bootpip_t ip; local 742 struct iphdr *ip; local [all...] |
/external/iptables/extensions/ |
libxt_conntrack.c | 20 __be32 ip; member in struct:ip_conntrack_old_tuple::__anon21278 27 __be32 ip; member in struct:ip_conntrack_old_tuple::__anon21280 320 sinfo->tuple[IP_CT_DIR_ORIGINAL].src.ip = cb->val.haddr.ip; 326 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.ip = cb->val.haddr.ip; 332 sinfo->tuple[IP_CT_DIR_REPLY].src.ip = cb->val.haddr.ip; 338 sinfo->tuple[IP_CT_DIR_REPLY].dst.ip = cb->val.haddr.ip; [all...] |
/external/iputils/ |
clockdiff.c | 14 #include <netinet/ip.h> 139 struct iphdr *ip = (struct iphdr *) packet; local 226 icp = (struct icmphdr *)(packet + (ip->ihl << 2)); 316 struct iphdr *ip = (struct iphdr *) packet; local 406 icp = (struct icmphdr *)(packet + (ip->ihl << 2)); 512 * of ICMP TSTAMP messages which are returned to the sender by the IP module
|
/external/jmdns/src/javax/jmdns/impl/ |
HostInfo.java | 59 * IP address to bind 72 String ip = System.getProperty("net.mdns.interface"); local 73 if (ip != null) { 74 addr = InetAddress.getByName(ip);
|
/external/kernel-headers/original/linux/ |
netfilter.h | 65 __be32 ip; member in union:nf_inet_addr
|
/external/libppp/src/ |
radius.c | 37 #include <netinet/ip.h> 77 #include "ip.h" 259 struct in_addr ip; local 330 r->ip.s_addr = r->mask.s_addr = INADDR_NONE; 336 r->ip = rad_cvt_addr(data); 338 " IP %s\n", inet_ntoa(r->ip)); 402 ip.s_addr = INADDR_ANY; 403 ncpaddr_setip4(&gw, ip); 404 ncprange_setip4host(&dest, ip); [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_idct.c | 27 int16_t *ip = input; local 31 a1 = ip[0] >> WHT_UPSCALE_FACTOR; 32 c1 = ip[1] >> WHT_UPSCALE_FACTOR; 33 d1 = ip[2] >> WHT_UPSCALE_FACTOR; 34 b1 = ip[3] >> WHT_UPSCALE_FACTOR; 46 ip += 4; 50 ip = output; 52 a1 = ip[4 * 0]; 53 c1 = ip[4 * 1]; 54 d1 = ip[4 * 2] 77 int16_t *ip = in; local [all...] |
/external/linux-tools-perf/util/ |
event.h | 14 u64 ip; member in struct:ip_event 72 u64 ip; member in struct:perf_sample 135 struct ip_event ip; member in union:perf_event
|
map.c | 210 map->unmap_ip(map, rip) : /* RIP -> IP */ 217 u64 ip = map->dso->adjust_symbols ? local 219 map->unmap_ip(map, addr); /* RIP -> IP */ 220 return ip; 472 static u64 map__reloc_map_ip(struct map *map, u64 ip) 474 return ip + (s64)map->pgoff; 477 static u64 map__reloc_unmap_ip(struct map *map, u64 ip) 479 return ip - (s64)map->pgoff; 505 const u64 ip = map->start; local 511 if (ip < m->start [all...] |
/external/lzma/C/ |
XzDec.c | 59 UInt32 ip;
member in struct:__anon24412 76 p->ip = 0;
105 p->ip = v;
122 #define CASE_BRA_CONV(isa) case XZ_ID_ ## isa: p->bufConv = isa ## _Convert(p->buf, p->bufTotal, p->ip, p->encodeMode); break;
174 p->bufConv = x86_Convert(p->buf, p->bufTotal, p->ip, &p->x86State, p->encodeMode);
184 p->ip += (UInt32)p->bufConv;
|
/external/openssl/crypto/comp/ |
c_zlib.c | 717 int ret, *ip; local 741 ip = ptr; 742 if (*ip == 0)
|
/external/ppp/pppd/ |
utils.c | 130 * %q (quoted string), %t (current time) and %I (IP address) formats. 176 u_int32_t ip; local 292 ip = va_arg(args, u_int32_t); 293 ip = ntohl(ip); 294 slprintf(num, sizeof(num), "%d.%d.%d.%d", (ip >> 24) & 0xff, 295 (ip >> 16) & 0xff, (ip >> 8) & 0xff, ip & 0xff);
|
/external/qemu-pc-bios/vgabios/tests/lfbprof/ |
lfbprof.c | 100 short es,ds,fs,gs,ip,cs,sp,ss; member in struct:__anon27538
|
/external/tcpdump/ |
ip.h | 1 /* @(#) $Header: /tcpdump/master/tcpdump/ip.h,v 1.11.2.1 2007/09/14 01:30:02 guy Exp $ (LBL) */ 34 * @(#)ip.h 8.2 (Berkeley) 6/1/94 50 struct ip { struct 52 #define IP_V(ip) (((ip)->ip_vhl & 0xf0) >> 4) 53 #define IP_HL(ip) ((ip)->ip_vhl & 0x0f) 70 * Definitions for IP type of service (ip_tos) 77 * Definitions for IP precedence (also in ip_tos) (hopefully unused) 128 #define IPTS_OFLW(ip) (((ipt)->ipt_oflwflg & 0xf0) >> 4 [all...] |