/prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/netfilter/ |
xt_conntrack.h | 37 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon29827 44 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon29829
|
/system/core/libnetutils/ |
packet.c | 22 #include <netinet/ip.h> 92 struct iphdr ip; local 100 ip.version = IPVERSION; 101 ip.ihl = sizeof(ip) >> 2; 102 ip.tos = 0; 103 ip.tot_len = htons(sizeof(ip) + sizeof(udp) + size); 104 ip.id = 0; 105 ip.frag_off = 0 161 struct iphdr ip; member in struct:dhcp_packet [all...] |
/external/chromium/net/socket/ |
socks_client_socket.cc | 42 uint8 ip[4]; member in struct:net::SOCKS4ServerRequest 52 uint8 ip[4]; member in struct:net::SOCKS4ServerResponse 282 // falling back to SOCKS4a (since it can be confusing to see invalid IP 304 // more robust to try all the IP addresses we have before 309 memcpy(&request.ip, &ipv4_host->sin_addr, sizeof(ipv4_host->sin_addr));
|
/external/chromium/third_party/libjingle/source/talk/base/ |
network.cc | 156 network->set_ip(list[i]->ip()); 223 unsigned int ip, gw; local 224 if (sscanf(line.c_str(), "%7s %8X %8X", iface, &ip, &gw) == 3 && 225 name == iface && ip == 0) { 261 uint32 ip = ntohl(inaddr->sin_addr.s_addr); local 263 new Network(ptr->ifr_name, ptr->ifr_name, ip, 353 // Ignore any networks with a 0.x.y.z IP 354 return (network.ip() < 0x01000000); 364 uint32 ip, uint32 gateway_ip) 365 : name_(name), description_(desc), ip_(ip), gateway_ip_(gateway_ip) [all...] |
socketaddress.cc | 32 #include <netinet/ip.h> 69 SocketAddress::SocketAddress(uint32 ip, int port) { 70 SetIP(ip); 99 void SocketAddress::SetIP(uint32 ip) { 101 ip_ = ip; 109 void SocketAddress::SetResolvedIP(uint32 ip) { 110 ip_ = ip; 118 uint32 SocketAddress::ip() const { function in class:talk_base::SocketAddress 304 std::string SocketAddress::IPToString(uint32 ip) { 306 ost << ((ip >> 24) & 0xff) 325 uint32 ip = 0; local 347 uint32 ip = local [all...] |
/external/clang/test/SemaCXX/ |
reinterpret-cast.cpp | 52 int *ip = reinterpret_cast<int*>(icpcpp); local 54 (void)reinterpret_cast<int const*>(ip);
|
/external/clang/test/SemaTemplate/ |
instantiate-expr-1.cpp | 144 int *ip = I; // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}} local 159 int *ip = I; // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}} local 160 return ip;
|
instantiate-method.cpp | 13 void test(X<int> *xi, int *ip, X<int(int)> *xf) { 15 xi->g(ip); 73 int *ip = cip; local
|
/external/dhcpcd/ |
net.c | 43 #include <netinet/ip.h> 641 struct ip ip; member in struct:udp_dhcp_packet 675 struct ip *ip; local 679 ip = &udpp->ip; 684 * ip structure and an invalid ip_len (basically udp length). 687 * Finally we complete the ip structure and ip checksum [all...] |
/external/iptables/extensions/ |
libxt_multiport.c | 200 entry->ip.proto, entry->ip.invflags); 242 entry->ip.proto, entry->ip.invflags); 317 const struct ipt_ip *ip = ip_void; local 318 __multiport_print(match, numeric, ip->proto); 324 const struct ip6t_ip6 *ip = ip_void; local 325 __multiport_print(match, numeric, ip->proto); 371 const struct ipt_ip *ip = ip_void; local 372 __multiport_print_v1(match, numeric, ip->proto) 378 const struct ip6t_ip6 *ip = ip_void; local 412 const struct ipt_ip *ip = ip_void; local 419 const struct ip6t_ip6 *ip = ip_void; local 460 const struct ipt_ip *ip = ip_void; local 467 const struct ip6t_ip6 *ip = ip_void; local [all...] |
/external/iptables/include/linux/netfilter/ |
xt_osf.h | 36 #define XT_OSF_TTL_TRUE 0 /* True ip and fingerprint TTL comparison */ 37 #define XT_OSF_TTL_LESS 1 /* Check if ip TTL is less than fingerprint one */ 38 #define XT_OSF_TTL_NOCHECK 2 /* Do not compare ip and fingerprint TTL at all */ 84 struct iphdr ip; member in struct:xt_osf_nlmsg
|
/external/libvpx/vpx_scale/generic/ |
bicubic_scaler.c | 490 unsigned char *RESTRICT ip, * RESTRICT op; local 510 ip = input_image + (in_stride * lh); 524 temp_sum = c_h[phase_offset_h*4+3] * ip[w - in_stride]; 525 temp_sum += c_h[phase_offset_h*4+2] * ip[w]; 526 temp_sum += c_h[phase_offset_h*4+1] * ip[w + in_stride]; 527 temp_sum += c_h[phase_offset_h*4] * ip[w + 2*in_stride]; 533 hbuf = ip;
|
/external/opencv/cv/src/ |
cvgeometry.cpp | 179 CvPoint ip = {0,0}; local 208 if( !is_float && !measure_dist && (ip.x = cvRound(pt.x)) == pt.x && (ip.y = cvRound(pt.y)) == pt.y ) 220 if( (v0.y <= ip.y && v.y <= ip.y) || 221 (v0.y > ip.y && v.y > ip.y) || 222 (v0.x < ip.x && v.x < ip.x) ) 224 if( ip.y == v.y && (ip.x == v.x || (ip.y == v0.y & [all...] |
cvsamplers.cpp | 90 CvPoint ip, CvRect* pRect ) 95 if( ip.x >= 0 ) 97 src += ip.x*pix_size; 102 rect.x = -ip.x; 107 if( ip.x + win_size.width < src_size.width ) 111 rect.width = src_size.width - ip.x - 1; 120 if( ip.y >= 0 ) 122 src += ip.y * src_step; 126 rect.y = -ip.y; 128 if( ip.y + win_size.height < src_size.height 396 CvPoint ip; local [all...] |
/external/openssl/apps/ |
s_socket.c | 105 static int init_client_ip(int *sock,unsigned char ip[4], int port, int type); 107 static int init_server_long(int *sock, int port,char *ip, int type); 109 static int host_ip(char *str, unsigned char ip[4]); 239 unsigned char ip[4]; local 241 if (!host_ip(host,&(ip[0]))) 245 return(init_client_ip(sock,ip,port,type)); 248 static int init_client_ip(int *sock, unsigned char ip[4], int port, int type) 260 ((unsigned long)ip[0]<<24L)| 261 ((unsigned long)ip[1]<<16L)| 262 ((unsigned long)ip[2]<< 8L) [all...] |
/external/openssl/crypto/bio/ |
b_sock.c | 115 static int get_ip(const char *str,unsigned char *ip); 120 int BIO_get_host_ip(const char *str, unsigned char *ip) 127 i=get_ip(str,ip); 139 /* If the string actually contained an IP address, we need not do 160 ip[i]=he->h_addr_list[0][i]; 587 static int get_ip(const char *str, unsigned char ip[4]) 615 ip[0]=tmp[0]; 616 ip[1]=tmp[1]; 617 ip[2]=tmp[2]; 618 ip[3]=tmp[3] 633 unsigned char ip[4]; local [all...] |
bss_dgram.c | 376 int *ip; local 416 ip=(int *)ptr; 417 if (ip != NULL) *ip=b->num; 463 /* (Linux)kernel sets DF bit on outgoing IP packets */ 519 * IP options are used.
|
/external/oprofile/module/ia64/ |
op_syscalls.c | 71 void * ip; member in struct:fdesc 330 fdesc_clone.ip = sys_call_table[__NR_clone - __NR_ni_syscall]; 332 fdesc_clone2.ip = sys_call_table[__NR_clone2 - __NR_ni_syscall]; 334 fdesc_execve.ip = sys_call_table[__NR_execve - __NR_ni_syscall]; 336 fdesc_mmap.ip = sys_call_table[__NR_mmap - __NR_ni_syscall]; 338 fdesc_mmap2.ip = sys_call_table[__NR_mmap2 - __NR_ni_syscall]; 340 fdesc_init_module.ip = sys_call_table[__NR_init_module - __NR_ni_syscall]; 342 fdesc_exit.ip = sys_call_table[__NR_exit - __NR_ni_syscall]; 352 ((struct fdesc *)post_stub_clone)->ip; 354 ((struct fdesc *)post_stub_clone2)->ip; [all...] |
/external/qemu/slirp/ |
ip_input.c | 51 static struct ip *ip_reass(register struct ip *ip, 59 * IP initialization: fill in IP protocol switch table. 60 * All protocols not implemented in kernel go to raw IP protocol handler. 72 * Ip input routine. Checksum and byte swap header. If fragmented 78 register struct ip *ip; local 87 if (m->m_len < sizeof (struct ip)) { 503 register struct ip *ip = mtod(m, struct ip *); local [all...] |
tcp_input.c | 235 struct ip save_ip, *ip; local 275 * Get IP and TCP header together in first mbuf. 276 * Note: IP leaves IP header in first mbuf. 279 if (iphlen > sizeof(struct ip )) { 281 iphlen=sizeof(struct ip ); 287 * Save a copy of the IP header in case we want restore it 290 ip=mtod(m, struct ip *); [all...] |
udp.c | 70 /* m->m_data points at ip packet header 71 * m->m_len length ip packet 72 * ip->ip_len length data (IPDU) 77 register struct ip *ip; local 81 struct ip save_ip; 91 * Strip IP options, if any; should skip this, 96 if(iphlen > sizeof(struct ip)) { 98 iphlen = sizeof(struct ip); 102 * Get IP and UDP header together in first mbuf [all...] |
/external/qemu/slirp-android/ |
ip_input.c | 51 static struct ip *ip_reass(register struct ip *ip, 59 * IP initialization: fill in IP protocol switch table. 60 * All protocols not implemented in kernel go to raw IP protocol handler. 72 * Ip input routine. Checksum and byte swap header. If fragmented 78 register struct ip *ip; local 87 if (m->m_len < sizeof (struct ip)) { 503 register struct ip *ip = mtod(m, struct ip *); local [all...] |
tcp_input.c | 235 struct ip save_ip, *ip; local 275 * Get IP and TCP header together in first mbuf. 276 * Note: IP leaves IP header in first mbuf. 279 if (iphlen > sizeof(struct ip )) { 281 iphlen=sizeof(struct ip ); 287 * Save a copy of the IP header in case we want restore it 290 ip=mtod(m, struct ip *); [all...] |
udp.c | 77 /* m->m_data points at ip packet header 78 * m->m_len length ip packet 79 * ip->ip_len length data (IPDU) 84 register struct ip *ip; local 88 struct ip save_ip; 98 * Strip IP options, if any; should skip this, 103 if(iphlen > sizeof(struct ip)) { 105 iphlen = sizeof(struct ip); 109 * Get IP and UDP header together in first mbuf [all...] |
/external/quake/quake/src/WinQuake/ |
dosisms.h | 56 unsigned short ip;
member in struct:__anon10673::__anon10675
|