Searched refs:m_copydata (Results 26 - 50 of 126) sorted by relevance

123456

/freebsd-13-stable/sys/netgraph/
H A Dng_deflate.c448 m_copydata(m, 0, inlen, (caddr_t)priv->inbuf);
557 m_copydata(m, 0, inlen, (caddr_t)priv->inbuf);
H A Dng_pred1.c413 m_copydata(m, 0, inlen, (caddr_t)(priv->inbuf + 2));
491 m_copydata(m, 0, inlen, (caddr_t)priv->inbuf);
H A Dng_bpf.c454 m_copydata(m, 0, totlen, (caddr_t)data);
H A Dng_mppc.c517 m_copydata(m, 0, inlen, (caddr_t)inbuf);
779 m_copydata(m, 0, inlen, (caddr_t)inbuf);
/freebsd-13-stable/sys/netinet/
H A Dip_gre.c538 * m_data is contiguous more than hlen bytes. Use m_copydata()
541 m_copydata(m, hlen + offsetof(struct ip, ip_tos),
543 m_copydata(m, hlen + offsetof(struct ip, ip_id),
H A Dsctp_bsd_addr.c474 m_copydata(m, 0, length, (caddr_t)copyto);
H A Dip_fastfwd.c137 m_copydata(m, 0, mcopy->m_len, mtod(mcopy, caddr_t));
/freebsd-13-stable/sys/dev/gxemul/ether/
H A Dif_gx.c247 m_copydata(m, 0, m->m_pkthdr.len, (void *)(uintptr_t)GXEMUL_ETHER_DEV_FUNCTION(GXEMUL_ETHER_DEV_BUFFER));
/freebsd-13-stable/sys/netgraph/bluetooth/l2cap/
H A Dng_l2cap_evnt.c1425 m_copydata(m, *off, sizeof(*hdr), (caddr_t) hdr);
1437 m_copydata(m, *off, NG_L2CAP_OPT_MTU_SIZE, (caddr_t) val);
1447 m_copydata(m, *off, NG_L2CAP_OPT_FLUSH_TIMO_SIZE, (caddr_t)val);
1456 m_copydata(m, *off, NG_L2CAP_OPT_QOS_SIZE, (caddr_t) val);
/freebsd-13-stable/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_tx.c220 * m_copydata() will be used on the remaining header which
320 * m_copydata() will be used on the remaining header which
634 m_copydata(mb, 0, ETHER_HDR_LEN, (caddr_t)eh);
641 m_copydata(mb, 0, args.ihs - ETHER_HDR_LEN, (caddr_t)(eh + 1));
655 m_copydata(mb, 0, args.ihs, wqe->eth.inline_hdr_start);
/freebsd-13-stable/sys/netinet6/
H A Dsctp6_usrreq.c300 m_copydata(ip6cp->ip6c_m,
353 m_copydata(ip6cp->ip6c_m,
358 m_copydata(ip6cp->ip6c_m,
/freebsd-13-stable/sys/netgraph/atm/
H A Dngatmbase.c472 m_copydata(m, 0, m->m_pkthdr.len, (*pmsg)->b_wptr);
/freebsd-13-stable/sys/kgssapi/krb5/
H A Dkrb5_mech.c1209 m_copydata(mic, 16, cklen, buf);
1728 m_copydata(m, tlen + datalen - padlen, padlen, buf);
1910 m_copydata(m, ctlen, cklen, buf);
1912 m_copydata(m, ctlen, cklen, buf2);
/freebsd-13-stable/sys/dev/rtwn/usb/
H A Drtwn_usb_rx.c357 m_copydata(m, 0, sizeof(stat), (caddr_t)&stat);
/freebsd-13-stable/sys/netpfil/ipfw/nat64/
H A Dnat64_translate.c761 m_copydata(m, 0, len, mtodo(n, sizeof(struct ip6_hdr) +
866 m_copydata(m, 0, len, mtodo(n, sizeof(struct ip) +
1051 m_copydata(m, hlen, sizeof(struct ip), (char *)&ip);
1118 m_copydata(m, hlen, len, (char *)(eip6 + 1));
/freebsd-13-stable/sys/dev/cxgbe/cxgbei/
H A Dcxgbei.c271 m_copydata(m, sizeof(*cpl), ISCSI_BHS_SIZE, (caddr_t)ip->ip_bhs);
455 m_copydata(m, 0, sizeof(struct iscsi_bhs), (void *)ip0->ip_bhs);
/freebsd-13-stable/sys/rpc/
H A Dclnt_vc.c1091 m_copydata(ct->ct_raw, 0, sizeof(uint32_t),
1160 m_copydata(ct->ct_record, 0,
H A Dsvc_vc.c635 m_copydata(cd->mpending, 0, sizeof(header),
721 m_copydata(cd->mreq, 0,
/freebsd-13-stable/sys/contrib/ipfilter/netinet/
H A Dip_compat.h365 extern void m_copydata(mb_t *, int, int, caddr_t);
455 # define COPYDATA m_copydata
/freebsd-13-stable/sys/dev/qlxgbe/
H A Dql_hw.c2290 m_copydata(mp, 0, tcp_opt_off, hdr);
2316 m_copydata(mp, 0, tcp_opt_off, hdr);
2347 m_copydata(mp, tcp_opt_off,
2352 m_copydata(mp, 0, hdrlen, hdr);
2419 m_copydata(mp, ehdrlen, sizeof(struct ip), buf);
2439 m_copydata(mp, ehdrlen, sizeof (struct ip6_hdr),
4257 m_copydata(mp, hdrlen, sizeof (struct ip), buf);
4268 m_copydata(mp, hdrlen, 4, buf);
4279 m_copydata(mp, hdrlen, sizeof (struct ip6_hdr), buf);
4290 m_copydata(m
[all...]
/freebsd-13-stable/sys/kern/
H A Duipc_sockbuf.c173 m_copydata(n, 0, n->m_len, mtodo(m, m->m_len));
1326 m_copydata(m, 0, m->m_len, mtodo(n, n->m_len));
1396 m_copydata(m, 0, m->m_len, mtodo(n, n->m_len));
/freebsd-13-stable/sys/dev/qlxgb/
H A Dqla_hw.c742 m_copydata(mp, 0, tcp_opt_off, hdr);
775 m_copydata(mp, tcp_opt_off,
780 m_copydata(mp, 0, hdrlen, hdr);
/freebsd-13-stable/sys/dev/sfxge/
H A Dsfxge_tx.c848 m_copydata(mbuf, mbuf->m_pkthdr.l3hlen, sizeof(th_copy),
1101 m_copydata(tso->mbuf, tso->tcph_off, sizeof(th_copy),
1317 m_copydata(tso->mbuf, 0, tso->header_len, header);
/freebsd-13-stable/contrib/ipfilter/
H A Dip_fil.c469 m_copydata(m, off, len, cp) function
/freebsd-13-stable/sys/dev/ntb/if_ntb/
H A Dif_ntb.c456 m_copydata(m, 12, 2, (void *)&proto);

Completed in 313 milliseconds

123456