Symbol: l_msghdr
sys/compat/linux/linux_socket.c
1414
linux_sendmsg_common(struct thread *td, l_int s, struct l_msghdr *msghdr,
sys/compat/linux/linux_socket.c
1423
struct l_msghdr linux_msghdr;
sys/compat/linux/linux_socket.c
1832
linux_recvmsg_common(struct thread *td, l_int s, struct l_msghdr *msghdr,
sys/compat/linux/linux_socket.c
1839
struct l_msghdr l_msghdr;
sys/compat/linux/linux_socket.c
1848
error = copyin(msghdr, &l_msghdr, sizeof(l_msghdr));
sys/compat/linux/linux_socket.c
1856
l_msghdr.msg_flags = flags;
sys/compat/linux/linux_socket.c
1858
error = linux_to_bsd_msghdr(msg, &l_msghdr);
sys/compat/linux/linux_socket.c
1892
msg->msg_name = PTRIN(l_msghdr.msg_name);
sys/compat/linux/linux_socket.c
1899
error = bsd_to_linux_msghdr(msg, &l_msghdr);
sys/compat/linux/linux_socket.c
1904
maxlen = l_msghdr.msg_controllen;
sys/compat/linux/linux_socket.c
1911
outbuf = PTRIN(l_msghdr.msg_control);
sys/compat/linux/linux_socket.c
1952
l_msghdr.msg_flags |= LINUX_MSG_CTRUNC;
sys/compat/linux/linux_socket.c
1979
l_msghdr.msg_controllen = outlen;
sys/compat/linux/linux_socket.c
1980
error = copyout(&l_msghdr, msghdr, sizeof(l_msghdr));
sys/compat/linux/linux_socket.c
756
linux_to_bsd_msghdr(struct msghdr *bhdr, const struct l_msghdr *lhdr)
sys/compat/linux/linux_socket.c
781
bsd_to_linux_msghdr(const struct msghdr *bhdr, struct l_msghdr *lhdr)
sys/compat/linux/linux_socket.c
89
static int linux_sendmsg_common(struct thread *, l_int, struct l_msghdr *,
sys/compat/linux/linux_socket.c
91
static int linux_recvmsg_common(struct thread *, l_int, struct l_msghdr *,
sys/compat/linux/linux_socket.h
65
struct l_msghdr msg_hdr;