Home
last modified time | relevance | path

Searched refs:mb_copy (Results 1 – 10 of 10) sorted by relevance

/dragonfly/sys/net/ip_mroute/
HDip_mroute.c1619 struct mbuf *mb_copy; in phyint_send() local
1627 mb_copy = m_copypacket(m, M_NOWAIT); in phyint_send()
1628 if (mb_copy && (M_HASCL(mb_copy) || mb_copy->m_len < hlen)) in phyint_send()
1629 mb_copy = m_pullup(mb_copy, hlen); in phyint_send()
1630 if (mb_copy == NULL) in phyint_send()
1634 tbf_send_packet(vifp, mb_copy); in phyint_send()
1636 tbf_control(vifp, mb_copy, in phyint_send()
1637 mtod(mb_copy, struct ip *), ntohs(ip->ip_len)); in phyint_send()
1643 struct mbuf *mb_copy; in encap_send() local
1658 MGETHDR(mb_copy, M_NOWAIT, MT_HEADER); in encap_send()
[all …]
/dragonfly/sys/netinet6/
HDip6_mroute.c1460 struct mbuf *mb_copy; in phyint_send() local
1475 mb_copy = m_copym(m, 0, M_COPYALL, M_NOWAIT); in phyint_send()
1476 if (mb_copy && in phyint_send()
1477 (M_HASCL(mb_copy) || mb_copy->m_len < sizeof(struct ip6_hdr))) in phyint_send()
1478 mb_copy = m_pullup(mb_copy, sizeof(struct ip6_hdr)); in phyint_send()
1479 if (mb_copy == NULL) { in phyint_send()
1484 mb_copy->m_flags |= M_MCAST; in phyint_send()
1500 error = ip6_output(mb_copy, NULL, &ro, in phyint_send()
1529 if (mb_copy->m_pkthdr.len <= linkmtu || linkmtu < IPV6_MMTU) { in phyint_send()
1537 error = ifp->if_output(ifp, mb_copy, in phyint_send()
[all …]
/dragonfly/contrib/grep/lib/
HDmbuiter.h206 mb_copy (&new_iter->cur, &old_iter->cur); in mbuiter_multi_copy()
HDmbiter.h199 mb_copy (&new_iter->cur, &old_iter->cur); in mbiter_multi_copy()
HDmbsstr.c64 mb_copy (&needle_mbchars[j], &mbui_cur (iter)); in knuth_morris_pratt_multibyte()
HDmbchar.h268 mb_copy (mbchar_t *new_mbc, const mbchar_t *old_mbc) in mb_copy() function
/dragonfly/sys/sys/
HDmchain.h64 mb_copy_t * mb_copy; /* user defined copy function */ member
/dragonfly/contrib/cvs-1.12/lib/
HDmbchar.h262 mb_copy (mbchar_t *new, const mbchar_t *old) in mb_copy() function
/dragonfly/sys/netproto/smb/
HDsmb_subr.c338 mbp->mb_copy = smb_copy_iconv; in smb_put_dmem()
/dragonfly/sys/kern/libmchain/
HDsubr_mchain.c219 error = mbp->mb_copy(mbp, source, dst, &srclen, &dstlen); in mb_put_mem()