OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UNALIGNED_MEMCPY
(Results
1 - 7
of
7
) sorted by null
/external/tcpdump/
print-rt6.c
96
UNALIGNED_MEMCPY
(&ip6->ip6_dst, last_addr, sizeof (struct in6_addr));
print-isakmp.c
799
UNALIGNED_MEMCPY
(&cookiecache[ninitiator].iaddr.in4, &ip->ip_src, sizeof(struct in_addr));
800
UNALIGNED_MEMCPY
(&cookiecache[ninitiator].raddr.in4, &ip->ip_dst, sizeof(struct in_addr));
806
UNALIGNED_MEMCPY
(&cookiecache[ninitiator].iaddr.in6, &ip6->ip6_src, sizeof(struct in6_addr));
807
UNALIGNED_MEMCPY
(&cookiecache[ninitiator].raddr.in6, &ip6->ip6_dst, sizeof(struct in6_addr));
813
UNALIGNED_MEMCPY
(&cookiecache[ninitiator].initiator, in, sizeof(*in));
1008
UNALIGNED_MEMCPY
(&sa, ext, sizeof(sa));
1034
UNALIGNED_MEMCPY
(&ident, ext + 1, sizeof(ident));
1065
UNALIGNED_MEMCPY
(&prop, ext, sizeof(prop));
[
all
...]
print-ip6.c
58
UNALIGNED_MEMCPY
(&ph.ph_src, &ip6->ip6_src, sizeof (struct in6_addr));
59
UNALIGNED_MEMCPY
(&ph.ph_dst, &ip6->ip6_dst, sizeof (struct in6_addr));
print-tcp.c
269
UNALIGNED_MEMCPY
(&tha.src, dst, sizeof ip6->ip6_dst);
270
UNALIGNED_MEMCPY
(&tha.dst, src, sizeof ip6->ip6_src);
273
UNALIGNED_MEMCPY
(&tha.dst, dst, sizeof ip6->ip6_dst);
274
UNALIGNED_MEMCPY
(&tha.src, src, sizeof ip6->ip6_src);
325
UNALIGNED_MEMCPY
(&tha.src, dst, sizeof ip->ip_dst);
326
UNALIGNED_MEMCPY
(&tha.dst, src, sizeof ip->ip_src);
329
UNALIGNED_MEMCPY
(&tha.dst, dst, sizeof ip->ip_dst);
330
UNALIGNED_MEMCPY
(&tha.src, src, sizeof ip->ip_src);
[
all
...]
print-ip.c
121
UNALIGNED_MEMCPY
(&retval, cp + len - 4, 4);
126
UNALIGNED_MEMCPY
(&retval, &ip->ip_dst.s_addr, sizeof(uint32_t));
151
UNALIGNED_MEMCPY
(&ph.src, &ip->ip_src.s_addr, sizeof(uint32_t));
153
UNALIGNED_MEMCPY
(&ph.dst, &ip->ip_dst.s_addr, sizeof(uint32_t));
print-nfs.c
908
UNALIGNED_MEMCPY
(&xmep->xid, &rp->rm_xid, sizeof(xmep->xid));
911
UNALIGNED_MEMCPY
(&xmep->client, &ip->ip_src, sizeof(ip->ip_src));
912
UNALIGNED_MEMCPY
(&xmep->server, &ip->ip_dst, sizeof(ip->ip_dst));
917
UNALIGNED_MEMCPY
(&xmep->client, &ip6->ip6_src, sizeof(ip6->ip6_src));
918
UNALIGNED_MEMCPY
(&xmep->server, &ip6->ip6_dst, sizeof(ip6->ip6_dst));
[
all
...]
netdissect.h
336
extern void
unaligned_memcpy
(void *, const void *, size_t);
338
#define
UNALIGNED_MEMCPY
(p, q, l)
unaligned_memcpy
((p), (q), (l))
345
#define
UNALIGNED_MEMCPY
(p, q, l) memcpy((p), (q), (l))
Completed in 525 milliseconds