Home | History | Annotate | Download | only in tests-mx32

Lines Matching refs:recv_fd

40 send_recv(const int send_fd, const int recv_fd,
45 return recvmsg(recv_fd, msg, flags);
49 test_msg_name(const int send_fd, const int recv_fd)
66 int rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
73 recv_fd, addr->sun_path, (int) sizeof(struct sockaddr_un),
77 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
82 recv_fd, addr->sun_path, (int) msg->msg_namelen, rc);
85 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
89 recv_fd, (int) msg->msg_namelen, rc);
96 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
100 recv_fd, (int) offsetof_sun_path, (int) msg->msg_namelen, rc);
104 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
109 recv_fd, (int) (sizeof(struct sockaddr) - offsetof_sun_path),
113 rc = send_recv(send_fd, recv_fd, msg, MSG_DONTWAIT);
115 recv_fd, (int) msg->msg_namelen, rc, errno2name());