Home
last modified time | relevance | path

Searched refs:lhdr (Results 1 – 5 of 5) sorted by relevance

/trueos/sys/compat/linux/
HDlinux_socket.c485 linux_to_bsd_msghdr(struct msghdr *bhdr, const struct l_msghdr *lhdr) in linux_to_bsd_msghdr() argument
487 if (lhdr->msg_controllen > INT_MAX) in linux_to_bsd_msghdr()
490 bhdr->msg_name = PTRIN(lhdr->msg_name); in linux_to_bsd_msghdr()
491 bhdr->msg_namelen = lhdr->msg_namelen; in linux_to_bsd_msghdr()
492 bhdr->msg_iov = PTRIN(lhdr->msg_iov); in linux_to_bsd_msghdr()
493 bhdr->msg_iovlen = lhdr->msg_iovlen; in linux_to_bsd_msghdr()
494 bhdr->msg_control = PTRIN(lhdr->msg_control); in linux_to_bsd_msghdr()
505 bhdr->msg_flags = linux_to_bsd_msg_flags(lhdr->msg_flags); in linux_to_bsd_msghdr()
510 bsd_to_linux_msghdr(const struct msghdr *bhdr, struct l_msghdr *lhdr) in bsd_to_linux_msghdr() argument
512 lhdr->msg_name = PTROUT(bhdr->msg_name); in bsd_to_linux_msghdr()
[all …]
/trueos/sys/netgraph/
HDng_ppp.c1553 uint32_t lhdr; in ng_ppp_mp_recv() local
1563 lhdr = be32dec(mtod(m, void *)); in ng_ppp_mp_recv()
1564 frag->seq = MP_LONG_EXTEND(lhdr); in ng_ppp_mp_recv()
1565 frag->first = (lhdr & MP_LONG_FIRST_FLAG) != 0; in ng_ppp_mp_recv()
1566 frag->last = (lhdr & MP_LONG_LAST_FLAG) != 0; in ng_ppp_mp_recv()
2123 uint32_t lhdr; in ng_ppp_mp_xmit() local
2125 lhdr = seq; in ng_ppp_mp_xmit()
2128 lhdr |= MP_LONG_FIRST_FLAG; in ng_ppp_mp_xmit()
2130 lhdr |= MP_LONG_LAST_FLAG; in ng_ppp_mp_xmit()
2131 lhdr = htonl(lhdr); in ng_ppp_mp_xmit()
[all …]
/trueos/cddl/contrib/opensolaris/cmd/lockstat/
HDlockstat.c1693 char lhdr[80], chdr[80]; in report_stats() local
1705 (void) sprintf(lhdr, "%s%s", in report_stats()
1722 "cuml", "rcnt", rectype >= LS_TIME ? buf : "", lhdr, chdr); in report_stats()
1772 "cuml", "rcnt", buf, lhdr, chdr); in report_stats()
/trueos/sys/dev/dc/
HDif_dc.c1744 struct dc_leaf_hdr *lhdr; in dc_parse_21143_srom() local
1751 lhdr = (struct dc_leaf_hdr *)&(sc->dc_srom[loff]); in dc_parse_21143_srom()
1753 ptr = (char *)lhdr; in dc_parse_21143_srom()
1758 for (i = 0; i < lhdr->dc_mcnt; i++) { in dc_parse_21143_srom()
1771 ptr = (char *)lhdr; in dc_parse_21143_srom()
1774 for (i = 0; i < lhdr->dc_mcnt; i++) { in dc_parse_21143_srom()
/trueos/sys/dev/virtio/network/
HDif_vtnet.c1732 struct virtio_net_hdr lhdr, *hdr; in vtnet_rxq_eof() local
1743 hdr = &lhdr; in vtnet_rxq_eof()