Home
last modified time | relevance | path

Searched refs:MSG_WAITALL (Results 1 – 12 of 12) sorted by relevance

/external/strace/tests/
Dunix-pair-send-recv.c41 assert(recvfrom(0, av[1], len, MSG_WAITALL, NULL, NULL) == len); in main()
49 assert(recvfrom(1, av[1], len, MSG_WAITALL, NULL, NULL) == len); in main()
52 assert(recvfrom(1, av[1], len, MSG_WAITALL, NULL, NULL) == 0); in main()
Ddumpio.expected4 recvfrom(0, "abcdefghijklmnopqrstuvwxyz", 26, MSG_WAITALL, NULL, NULL) = 26
Dinet-accept-connect-send-recv.c47 assert(recv(1, buf, sizeof(buf), MSG_WAITALL) == (int) size); in main()
/external/fio/os/
Dos-hpux.h36 #ifndef MSG_WAITALL
37 #define MSG_WAITALL 0x40 macro
/external/strace/xlat/
Dmsg_flags.h28 #if defined(MSG_WAITALL) || (defined(HAVE_DECL_MSG_WAITALL) && HAVE_DECL_MSG_WAITALL)
29 XLAT(MSG_WAITALL),
Dmsg_flags.in9 MSG_WAITALL
/external/nanopb-c/examples/network_server/
Dcommon.c22 result = recv(fd, buf, count, MSG_WAITALL); in read_callback()
/external/fio/engines/
Dnet.c629 else if (!ret && (flags & MSG_WAITALL)) in fio_netio_recv()
635 flags |= MSG_WAITALL; in fio_netio_recv()
898 ret = sendto(f->fd, (void *) &msg, sizeof(msg), MSG_WAITALL, to, len); in fio_netio_send_close()
930 ret = recvfrom(f->fd, (void *) &msg, sizeof(msg), MSG_WAITALL, to, &len); in fio_netio_udp_recv_open()
967 ret = sendto(f->fd, (void *) &msg, sizeof(msg), MSG_WAITALL, to, len); in fio_netio_send_open()
/external/nanopb-c/docs/
Dconcepts.rst60 … full requested length of data. For example, POSIX *recv()* needs the *MSG_WAITALL* parameter to a…
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
Duserial_linux.c498 recv(signal_fds[0], &sig_recv, sizeof(sig_recv), MSG_WAITALL); in reset_signal()
/external/fio/
Dserver.c162 int ret = recv(sk, p, len, MSG_WAITALL); in fio_recv_data()
/external/blktrace/
Dblktrace.c809 int ret = recv(fd, buf, bytes_left, MSG_WAITALL); in __net_recv_data()