Symbol: l_msghdr
sys/compat/linux/linux_socket.c
1381
linux_sendmsg_common(struct thread *td, l_int s, struct l_msghdr *msghdr,
sys/compat/linux/linux_socket.c
1390
struct l_msghdr linux_msghdr;
sys/compat/linux/linux_socket.c
1799
linux_recvmsg_common(struct thread *td, l_int s, struct l_msghdr *msghdr,
sys/compat/linux/linux_socket.c
1806
struct l_msghdr l_msghdr;
sys/compat/linux/linux_socket.c
1815
error = copyin(msghdr, &l_msghdr, sizeof(l_msghdr));
sys/compat/linux/linux_socket.c
1823
l_msghdr.msg_flags = flags;
sys/compat/linux/linux_socket.c
1825
error = linux_to_bsd_msghdr(msg, &l_msghdr);
sys/compat/linux/linux_socket.c
1859
msg->msg_name = PTRIN(l_msghdr.msg_name);
sys/compat/linux/linux_socket.c
1866
error = bsd_to_linux_msghdr(msg, &l_msghdr);
sys/compat/linux/linux_socket.c
1871
maxlen = l_msghdr.msg_controllen;
sys/compat/linux/linux_socket.c
1878
outbuf = PTRIN(l_msghdr.msg_control);
sys/compat/linux/linux_socket.c
1919
l_msghdr.msg_flags |= LINUX_MSG_CTRUNC;
sys/compat/linux/linux_socket.c
1946
l_msghdr.msg_controllen = outlen;
sys/compat/linux/linux_socket.c
1947
error = copyout(&l_msghdr, msghdr, sizeof(l_msghdr));
sys/compat/linux/linux_socket.c
723
linux_to_bsd_msghdr(struct msghdr *bhdr, const struct l_msghdr *lhdr)
sys/compat/linux/linux_socket.c
748
bsd_to_linux_msghdr(const struct msghdr *bhdr, struct l_msghdr *lhdr)
sys/compat/linux/linux_socket.c
87
static int linux_sendmsg_common(struct thread *, l_int, struct l_msghdr *,
sys/compat/linux/linux_socket.c
89
static int linux_recvmsg_common(struct thread *, l_int, struct l_msghdr *,
sys/compat/linux/linux_socket.h
65
struct l_msghdr msg_hdr;