HomeSort by relevance Sort by last modified time
    Searched refs:msghdr (Results 1 - 25 of 247) sorted by null

1 2 3 4 5 6 7 8 910

  /external/strace/
msghdr.h 4 /* For definitions of struct msghdr and struct mmsghdr. */
9 struct msghdr msg_hdr;
17 print_struct_msghdr(struct tcb *, const struct msghdr *,
fetch_struct_msghdr.c 32 #include "msghdr.h"
33 typedef struct msghdr struct_msghdr;
49 struct msghdr *const p_native = p;
  /bionic/tests/headers/posix/
sys_socket_h.c 44 TYPE(struct msghdr);
45 STRUCT_MEMBER(struct msghdr, void*, msg_name);
46 STRUCT_MEMBER(struct msghdr, socklen_t, msg_namelen);
47 STRUCT_MEMBER(struct msghdr, struct iovec*, msg_iov);
49 STRUCT_MEMBER(struct msghdr, size_t, msg_iovlen);
51 STRUCT_MEMBER(struct msghdr, int, msg_iovlen);
53 STRUCT_MEMBER(struct msghdr, void*, msg_control);
55 STRUCT_MEMBER(struct msghdr, size_t, msg_controllen);
57 STRUCT_MEMBER(struct msghdr, socklen_t, msg_controllen);
59 STRUCT_MEMBER(struct msghdr, int, msg_flags)
    [all...]
  /bionic/libc/bionic/
__cmsg_nxthdr.cpp 31 cmsghdr* __cmsg_nxthdr(msghdr* msg, cmsghdr* cmsg) {
  /external/wayland/src/
wayland-os.h 36 wl_os_recvmsg_cloexec(int sockfd, struct msghdr *msg, int flags);
  /system/core/libnetutils/
packet.c 97 struct msghdr msghdr; local
146 msghdr.msg_name = &destaddr;
147 msghdr.msg_namelen = sizeof(destaddr);
148 msghdr.msg_iov = iov;
149 msghdr.msg_iovlen = sizeof(iov) / sizeof(struct iovec);
150 msghdr.msg_flags = 0;
151 msghdr.msg_control = 0;
152 msghdr.msg_controllen = 0;
153 return sendmsg(s, &msghdr, 0)
    [all...]
  /external/ltp/testcases/kernel/syscalls/recvmsg/
recvmsg02.c 58 struct msghdr msghdr = { local
82 R = recvmsg(sdr, &msghdr, MSG_PEEK);
  /external/strace/tests/
recvmsg.c 83 const struct msghdr w_mh_ = {
87 const struct msghdr *w_mh = tail_memdup(&w_mh_, sizeof(w_mh_));
119 const struct msghdr r_mh_ = {
123 struct msghdr *r_mh = tail_memdup(&r_mh_, sizeof(r_mh_));
  /external/strace/tests-m32/
recvmsg.c 83 const struct msghdr w_mh_ = {
87 const struct msghdr *w_mh = tail_memdup(&w_mh_, sizeof(w_mh_));
119 const struct msghdr r_mh_ = {
123 struct msghdr *r_mh = tail_memdup(&r_mh_, sizeof(r_mh_));
  /external/strace/tests-mx32/
recvmsg.c 83 const struct msghdr w_mh_ = {
87 const struct msghdr *w_mh = tail_memdup(&w_mh_, sizeof(w_mh_));
119 const struct msghdr r_mh_ = {
123 struct msghdr *r_mh = tail_memdup(&r_mh_, sizeof(r_mh_));
  /prebuilts/go/darwin-x86/src/syscall/
syscall_netbsd_386.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
syscall_netbsd_amd64.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
syscall_netbsd_arm.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
syscall_openbsd_386.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
syscall_openbsd_amd64.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
syscall_openbsd_arm.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
syscall_dragonfly_amd64.go 27 func (msghdr *Msghdr) SetControllen(length int) {
28 msghdr.Controllen = uint32(length)
syscall_freebsd_amd64.go 27 func (msghdr *Msghdr) SetControllen(length int) {
28 msghdr.Controllen = uint32(length)
  /prebuilts/go/linux-x86/src/syscall/
syscall_netbsd_386.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
syscall_netbsd_amd64.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
syscall_netbsd_arm.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
syscall_openbsd_386.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
syscall_openbsd_amd64.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
syscall_openbsd_arm.go 25 func (msghdr *Msghdr) SetControllen(length int) {
26 msghdr.Controllen = uint32(length)
  /system/core/libmemunreachable/
LeakPipe.cpp 27 struct msghdr hdr {};
61 struct msghdr hdr {};

Completed in 303 milliseconds

1 2 3 4 5 6 7 8 910