HomeSort by relevance Sort by last modified time
    Searched refs:UNALIGNED_MEMCPY (Results 1 - 6 of 6) sorted by null

  /external/tcpdump/
print-isakmp.c 294 UNALIGNED_MEMCPY(&sin->sin_addr, &ip->ip_src, sizeof(ip->ip_src));
300 UNALIGNED_MEMCPY(&sin->sin_addr, &ip->ip_dst, sizeof(ip->ip_dst));
315 UNALIGNED_MEMCPY(&sin6->sin6_addr, &ip6->ip6_src, sizeof(ip6->ip6_src));
321 UNALIGNED_MEMCPY(&sin6->sin6_addr, &ip6->ip6_dst, sizeof(ip6->ip6_dst));
327 UNALIGNED_MEMCPY(&cookiecache[ninitiator].initiator, in, sizeof(*in));
355 UNALIGNED_MEMCPY(&sin->sin_addr, &ip->ip_src, sizeof(ip->ip_src));
365 UNALIGNED_MEMCPY(&sin6->sin6_addr, &ip6->ip6_src, sizeof(ip6->ip6_src));
558 UNALIGNED_MEMCPY(&sa, ext, sizeof(sa));
584 UNALIGNED_MEMCPY(&ident, ext + 1, sizeof(ident));
615 UNALIGNED_MEMCPY(&prop, ext, sizeof(prop))
    [all...]
print-tcp.c 267 UNALIGNED_MEMCPY(&tha.src, dst, sizeof ip6->ip6_dst);
268 UNALIGNED_MEMCPY(&tha.dst, src, sizeof ip6->ip6_src);
271 UNALIGNED_MEMCPY(&tha.dst, dst, sizeof ip6->ip6_dst);
272 UNALIGNED_MEMCPY(&tha.src, src, sizeof ip6->ip6_src);
323 UNALIGNED_MEMCPY(&tha.src, dst, sizeof ip->ip_dst);
324 UNALIGNED_MEMCPY(&tha.dst, src, sizeof ip->ip_src);
327 UNALIGNED_MEMCPY(&tha.dst, dst, sizeof ip->ip_dst);
328 UNALIGNED_MEMCPY(&tha.src, src, sizeof ip->ip_src);
    [all...]
print-ip6.c 65 UNALIGNED_MEMCPY(&ph.ph_src, &ip6->ip6_src, sizeof (struct in6_addr));
66 UNALIGNED_MEMCPY(&ph.ph_dst, &ip6->ip6_dst, sizeof (struct in6_addr));
print-ip.c 123 UNALIGNED_MEMCPY(&retval, cp + len - 4, 4);
128 UNALIGNED_MEMCPY(&retval, &ip->ip_dst.s_addr, sizeof(u_int32_t));
152 UNALIGNED_MEMCPY(&ph.src, &ip->ip_src.s_addr, sizeof(u_int32_t));
154 UNALIGNED_MEMCPY(&ph.dst, &ip->ip_dst.s_addr, sizeof(u_int32_t));
netdissect.h 298 extern void unaligned_memcpy(void *, const void *, size_t);
300 #define UNALIGNED_MEMCPY(p, q, l) unaligned_memcpy((p), (q), (l))
307 #define UNALIGNED_MEMCPY(p, q, l) memcpy((p), (q), (l))
print-nfs.c 1000 UNALIGNED_MEMCPY(&xmep->client, &ip->ip_src, sizeof(ip->ip_src));
1001 UNALIGNED_MEMCPY(&xmep->server, &ip->ip_dst, sizeof(ip->ip_dst));
1006 UNALIGNED_MEMCPY(&xmep->client, &ip6->ip6_src, sizeof(ip6->ip6_src));
1007 UNALIGNED_MEMCPY(&xmep->server, &ip6->ip6_dst, sizeof(ip6->ip6_dst));
    [all...]

Completed in 108 milliseconds