HomeSort by relevance Sort by last modified time
    Searched defs:ip (Results 151 - 175 of 282) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/tcpdump/
print-dccp.c 29 #include "ip.h"
63 static int dccp_cksum(const struct ip *ip,
82 memcpy(&phu.ph.src, &ip->ip_src.s_addr, sizeof(u_int32_t));
83 if (IP_HL(ip) == 5)
84 memcpy(&phu.ph.dst, &ip->ip_dst.s_addr, sizeof(u_int32_t));
86 phu.ph.dst = ip_finddst(ip);
214 * @len - lenght of ip packet
219 const struct ip *ip; local
    [all...]
print-esp.c 47 #include "ip.h"
126 * decode the form: SPINUM@IP <tab> ALGONAME:0xsecret
215 (*ndo->ndo_warning)(ndo, "print_esp: can not decode IP# %s\n", spikey);
348 struct ip *ip; local
407 ip = (struct ip *)bp2;
408 switch (IP_V(ip)) {
432 if (EXTRACT_16BITS(&ip->ip_off) & IP_MF)
434 len = EXTRACT_16BITS(&ip->ip_len)
    [all...]
print-ip.c 24 "@(#) $Header: /tcpdump/master/tcpdump/print-ip.c,v 1.149.2.9 2007/09/14 01:30:02 guy Exp $ (LBL)";
41 #include "ip.h"
58 * print the recorded route in an IP RR, LSRR or SSRR option.
85 * Otherwise, return IP destination.
91 ip_finddst(const struct ip *ip)
98 cp = (const u_char *)(ip + 1);
99 length = (IP_HL(ip) << 2) - sizeof(struct ip);
128 memcpy(&retval, &ip->ip_dst.s_addr, sizeof(u_int32_t))
367 const struct ip *ip; member in struct:ip_print_demux_state
710 struct ip *ip, hdr; local
    [all...]
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...]
print-nfs.c 44 #include "ip.h"
162 struct ip *ip; local
174 switch (IP_V((struct ip *)bp)) {
176 ip = (struct ip *)bp;
177 strlcpy(srcaddr, ipaddr_string(&ip->ip_src), sizeof(srcaddr));
178 strlcpy(dstaddr, ipaddr_string(&ip->ip_dst), sizeof(dstaddr));
864 int ipver; /* IP version (4 or 6) */
866 struct in6_addr client; /* client IP address (net order) *
892 struct ip *ip = NULL; local
944 struct ip *ip = (struct ip *)bp; local
    [all...]
print-pim.c 108 u_short pim_cksum; /* IP style check sum */
119 #include "ip.h"
253 TCHECK2(bp[8], 20); /* ip header */
471 * 1 IP (IP version 4)
472 * 2 IP6 (IP version 6)
748 struct ip *ip; local
760 ip = (struct ip *)bp
    [all...]
print-tcp.c 45 #include "ip.h"
62 static int tcp_verify_signature(const struct ip *ip, const struct tcphdr *tp,
114 static int tcp_cksum(register const struct ip *ip,
134 memcpy(&phu.ph.src, &ip->ip_src.s_addr, sizeof(u_int32_t));
135 if (IP_HL(ip) == 5)
136 memcpy(&phu.ph.dst, &ip->ip_dst.s_addr, sizeof(u_int32_t));
138 phu.ph.dst = ip_finddst(ip);
195 register const struct ip *ip local
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/main/source/
aec_rdft.c 14 * All changes are covered by the WebRTC license and IP grant:
28 static int ip[16]; variable
30 static void bitrv2_32or128(int n, int *ip, float *a) {
35 ip[0] = 0;
42 ip[m + j] = ip[j] + l;
50 j1 = 2 * j + ip[k];
51 k1 = 2 * k + ip[j];
91 j1 = 2 * k + m2 + ip[k];
109 ip[0] = nw
    [all...]
  /frameworks/base/libs/utils/
CallStack.cpp 54 void* ip = (void*)_Unwind_GetIP(context); local
55 if (ip) {
59 state->addrs[0] = ip;
295 const void* ip = mStack[level]; local
296 if (!ip) return res;
302 const char* name = lookup_symbol(ip, &offs, namebuf, sizeof(namebuf));
306 snprintf(tmp1, 32, "0x%p: <", ip);
313 name = MapInfo::mapAddressToName(ip, "<unknown>", &start);
315 long(uintptr_t(ip)-uintptr_t(start)), name);
  /bionic/libc/bionic/
malloc_debug_leak.c 236 intptr_t ip = (intptr_t)_Unwind_GetIP(context); local
237 if (ip) {
238 state->addrs[0] = ip;
  /external/clang/test/SemaCXX/
cstyle-cast.cpp 198 int *ip = (int*)(icpcpp); local
199 (void)(int const*)(ip);
  /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 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/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::__anon6809
27 __be32 ip; member in struct:ip_conntrack_old_tuple::__anon6811
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/kernel-headers/original/linux/
netfilter.h 65 __be32 ip; member in union:nf_inet_addr
  /external/openssl/crypto/comp/
c_zlib.c 717 int ret, *ip; local
741 ip = ptr;
742 if (*ip == 0)
  /external/ppp/pppd/
utils.c 127 * %q (quoted string), %t (current time) and %I (IP address) formats.
173 u_int32_t ip; local
289 ip = va_arg(args, u_int32_t);
290 ip = ntohl(ip);
291 slprintf(num, sizeof(num), "%d.%d.%d.%d", (ip >> 24) & 0xff,
292 (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:__anon10334
  /external/valgrind/main/coregrind/
m_libcfile.c 704 Supplied string contains either an ip address "192.168.0.1" or
705 an ip address and port pair, "192.168.0.1:1500". Parse these,
717 UInt ip = 0; local
719 Bool ok = parse_inet_addr_and_port(str, &ip, &port);
724 // VG_(printf)("ip = %d.%d.%d.%d, port %d\n",
725 // (ip >> 24) & 0xFF, (ip >> 16) & 0xFF,
726 // (ip >> 8) & 0xFF, ip & 0xFF,
730 servAddr.sin_addr.s_addr = VG_(htonl)(ip);
    [all...]
  /external/webrtc/src/modules/audio_processing/ns/main/source/
ns_core.h 79 int ip[IP_LENGTH]; member in struct:NSinst_t_
  /external/wpa_supplicant_8/src/tls/
x509v3.h 49 u8 *ip; /* iPAddress */ member in struct:x509_name
  /system/core/sh/
var.c 166 const struct varinit *ip; local
170 for (ip = varinit ; (vp = ip->var) != NULL ; ip++) {
171 if (find_var(ip->text, &vpp, &vp->name_len) != NULL)
175 vp->text = strdup(ip->text);
176 vp->flags = ip->flags;
177 vp->func = ip->func;
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ip_tables.h 63 struct ipt_ip ip; member in struct:ipt_entry
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
ip_tables.h 63 struct ipt_ip ip; member in struct:ipt_entry

Completed in 2041 milliseconds

1 2 3 4 5 67 8 91011>>