mcopy 203 net/if_ethersubr.c struct mbuf *mcopy = (struct mbuf *)0;
mcopy 267 net/if_ethersubr.c mcopy = m_copy(m, 0, (int)M_COPYALL);
mcopy 348 net/if_ethersubr.c if (mcopy)
mcopy 349 net/if_ethersubr.c (void) looutput(ifp, mcopy, dst, rt);
mcopy 145 net/if_fddisubr.c struct mbuf *mcopy = (struct mbuf *)0;
mcopy 203 net/if_fddisubr.c mcopy = m_copy(m, 0, (int)M_COPYALL);
mcopy 299 net/if_fddisubr.c if (mcopy)
mcopy 300 net/if_fddisubr.c (void) looutput(ifp, mcopy, dst, rt);
mcopy 1440 netinet/ip_input.c struct mbuf *mcopy;
mcopy 1489 netinet/ip_input.c mcopy = m_copym(m, 0, min(ntohs(ip->ip_len), 68), M_DONTWAIT);
mcopy 1490 netinet/ip_input.c if (mcopy)
mcopy 1491 netinet/ip_input.c mcopy = m_pullup(mcopy, min(ntohs(ip->ip_len), 68));
mcopy 1539 netinet/ip_input.c if (mcopy == NULL)
mcopy 1590 netinet/ip_input.c icmp_error(mcopy, type, code, dest, destmtu);
mcopy 1594 netinet/ip_input.c if (mcopy)
mcopy 1595 netinet/ip_input.c m_free(mcopy);
mcopy 96 netinet6/ip6_forward.c struct mbuf *mcopy = NULL;
mcopy 235 netinet6/ip6_forward.c mcopy = m_copy(m, 0, imin(m->m_pkthdr.len, ICMPV6_PLD_MAXLEN));
mcopy 258 netinet6/ip6_forward.c if (mcopy) {
mcopy 259 netinet6/ip6_forward.c icmp6_error(mcopy, ICMP6_DST_UNREACH,
mcopy 282 netinet6/ip6_forward.c if (mcopy) {
mcopy 283 netinet6/ip6_forward.c icmp6_error(mcopy, ICMP6_DST_UNREACH,
mcopy 315 netinet6/ip6_forward.c if (mcopy)
mcopy 316 netinet6/ip6_forward.c icmp6_error(mcopy, ICMP6_DST_UNREACH,
mcopy 345 netinet6/ip6_forward.c m_freem(mcopy);
mcopy 352 netinet6/ip6_forward.c if (mcopy) {
mcopy 357 netinet6/ip6_forward.c icmp6_error(mcopy, ICMP6_PACKET_TOO_BIG, 0, mtu);
mcopy 394 netinet6/ip6_forward.c icmp6_error(mcopy, ICMP6_DST_UNREACH,
mcopy 465 netinet6/ip6_forward.c if (mcopy)
mcopy 473 netinet6/ip6_forward.c if (mcopy == NULL)
mcopy 478 netinet6/ip6_forward.c icmp6_redirect_output(mcopy, rt);
mcopy 500 netinet6/ip6_forward.c icmp6_error(mcopy, type, code, 0);
mcopy 504 netinet6/ip6_forward.c m_freem(mcopy);