/third_party/ltp/testcases/kernel/syscalls/sendmmsg/ |
H A D | sendmmsg.h | 18 { .recvmmsg = libc_recvmmsg, .sendmmsg = libc_sendmmsg, .ts_type = TST_LIBC_TIMESPEC, .desc = "vDSO or syscall with libc spec"}, 21 { .recvmmsg = sys_recvmmsg, .sendmmsg = sys_sendmmsg, .ts_type = TST_KERN_OLD_TIMESPEC, .desc = "syscall with old kernel spec"}, 25 { .recvmmsg = sys_recvmmsg64, .sendmmsg = sys_sendmmsg, .ts_type = TST_KERN_TIMESPEC, .desc = "syscall time64 with kernel spec"},
|
H A D | sendmmsg_var.h | 33 return recvmmsg(sockfd, msgvec, vlen, flags, timeout); in libc_recvmmsg() 35 tst_brk(TCONF, "libc recvmmsg not present"); in libc_recvmmsg()
|
H A D | sendmmsg01.c | 6 * recvmmsg in release 4.15 of the Linux man-pages project. 39 retval = tv->recvmmsg(receive_sockfd, rcv_msg, VLEN, 0, tst_ts_get(&timeout)); in run() 42 tst_res(TFAIL | TERRNO, "recvmmsg() failed"); in run()
|
/third_party/musl/compat/time32/ |
H A D | recvmmsg_time32.c | 8 return recvmmsg(fd, msgvec, vlen, flags, ts32 ? (&(struct timespec){ in __recvmmsg_time32()
|
/third_party/ltp/include/ |
H A D | time64_variants.h | 57 int (*recvmmsg)(int sockfd, struct mmsghdr *msgvec, unsigned int vlen, member
|
/third_party/musl/src/network/ |
H A D | recvmmsg.c | 13 int recvmmsg(int fd, struct mmsghdr *msgvec, unsigned int vlen, unsigned int flags, struct timespec *timeout) in recvmmsg() function
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | socket.h | 71 int recvmmsg (int, struct mmsghdr *, unsigned int, unsigned int, struct timespec *); 406 __REDIR(recvmmsg, __recvmmsg_time64);
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
H A D | socket.h | 60 int recvmmsg (int, struct mmsghdr *, unsigned int, unsigned int, struct timespec *); 397 __REDIR(recvmmsg, __recvmmsg_time64);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | socket.h | 71 int recvmmsg (int, struct mmsghdr *, unsigned int, unsigned int, struct timespec *); 406 __REDIR(recvmmsg, __recvmmsg_time64);
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
H A D | socket.h | 71 int recvmmsg (int, struct mmsghdr *, unsigned int, unsigned int, struct timespec *); 408 __REDIR(recvmmsg, __recvmmsg_time64);
|
/third_party/musl/porting/linux/user/include/sys/ |
H A D | socket.h | 75 int recvmmsg (int, struct mmsghdr *, unsigned int, unsigned int, struct timespec *); 414 __REDIR(recvmmsg, __recvmmsg_time64);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | socket.h | 71 int recvmmsg (int, struct mmsghdr *, unsigned int, unsigned int, struct timespec *); 406 __REDIR(recvmmsg, __recvmmsg_time64);
|
/third_party/musl/include/sys/ |
H A D | socket.h | 75 int recvmmsg (int, struct mmsghdr *, unsigned int, unsigned int, struct timespec *); 413 __REDIR(recvmmsg, __recvmmsg_time64);
|
/third_party/ltp/testcases/kernel/syscalls/recvmmsg/ |
H A D | recvmmsg01.c | 4 * Test recvmmsg() errors: 92 TST_EXP_FAIL2(tv->recvmmsg(*tc->fd, *tc->msg_vec, VLEN, 0, timeout), in do_test() 93 tc->exp_errno, "recvmmsg() %s", tc->desc); in do_test()
|
/third_party/musl/libc-test/src/common/ |
H A D | test.h | 77 #define __recvmmsg_time64 recvmmsg
|
/third_party/musl/libc-test/src/functionalext/supplement/network/ |
H A D | recvmmsg.c | 109 retval = recvmmsg(sockfd, msgs, VLEN, 0, &timeout); in recvsss() 111 t_error("recvmmsg_0100 recv recvmmsg error"); in recvsss() 118 * @tc.desc : Test recvmmsg to recv messages through socket
|
/third_party/FreeBSD/lib/libc/include/ |
H A D | namespace.h | 215 #define recvmmsg _recvmmsg
macro
|
/third_party/node/deps/uv/src/unix/ |
H A D | freebsd.c | 281 return recvmmsg(fd, in uv__recvmmsg()
|
/third_party/musl/libc-test/src/functionalext/supplement/network/network_gtest/ |
H A D | socket_test.cpp | 161 * @tc.desc: Test the functionality of the "recvmmsg" function by creating a Unix domain socket, setting up a 162 * connection, and receiving multiple messages using "recvmmsg". 199 EXPECT_EQ(NUM_RECV_MSGS, static_cast<size_t>(recvmmsg(acceptFd, msgs.data(), NUM_RECV_MSGS, 0, &ts))); in HWTEST_F() 213 * @tc.desc: Test the error handling functionality of the "recvmmsg" function by passing an invalid file 219 EXPECT_EQ(-1, recvmmsg(-1, nullptr, 0, 0, nullptr)); in HWTEST_F()
|
/third_party/rust/crates/nix/test/sys/ |
H A D | test_socket.rs | 560 use nix::sys::socket::{recvmmsg, MsgFlags}; in udp_recvmmsg() 606 recvmmsg(rsock, &mut data, msgs.iter(), MsgFlags::empty(), None) in udp_recvmmsg() 607 .expect("recvmmsg") in udp_recvmmsg() 631 use nix::sys::socket::{recvmmsg, MsgFlags}; in udp_recvmmsg_dontwait_short_read() 662 // Ensure we've sent all the messages before continuing so `recvmmsg` in udp_recvmmsg_dontwait_short_read() 668 // Buffers to receive >`NUM_MESSAGES_SENT` messages to ensure `recvmmsg` in udp_recvmmsg_dontwait_short_read() 683 let res: Vec<RecvMsg<SockaddrIn>> = recvmmsg( in udp_recvmmsg_dontwait_short_read() 690 .expect("recvmmsg") in udp_recvmmsg_dontwait_short_read() 2284 recvmmsg(in_socket, &mut data, iov.iter(), flags, None) in test_recvmmsg_timestampns()
|
/third_party/musl/Benchmark/musl/ |
H A D | socket_test.cpp | 145 ret = recvmmsg(socks[0], msgsr, MSG_COUNT, 0, nullptr); in Bm_function_socketpair_sendmmsg_recvmmsg() 147 printf("recvmmsg err\n"); in Bm_function_socketpair_sendmmsg_recvmmsg()
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/uclibc/ |
H A D | mod.rs | 318 pub fn recvmmsg( in recvmmsg() functions
|
/third_party/rust/crates/nix/src/sys/socket/ |
H A D | mod.rs | 1586 /// Preallocated structures needed for [`recvmmsg`] and [`sendmmsg`] functions 1605 /// Preallocate structure used by [`recvmmsg`] and [`sendmmsg`] takes number of headers to preallocate 1665 /// call to recvmmsg(). In the current implementation, however, the error code can be 1669 // On aarch64 linux using recvmmsg and trying to get hardware/kernel timestamps might not 1679 pub fn recvmmsg<'a, XS, S, I>( in recvmmsg() functions 1703 libc::recvmmsg( in recvmmsg() 1726 /// Iterator over results of [`recvmmsg`]/[`sendmmsg`] 1756 // as long as we are not reading past the index writen by recvmmsg - address in next() 1814 // test contains both recvmmsg and timestaping which is linux only 1815 // there are existing tests for recvmmsg onl [all...] |
/third_party/curl/lib/vquic/ |
H A D | vquic.c | 25 /* WIP, experimental: use recvmmsg() on linux 364 while((mcount = recvmmsg(qctx->sockfd, mmsg, n, 0, NULL)) == -1 && in recvmmsg_packets() 369 CURL_TRC_CF(data, cf, "ingress, recvmmsg -> EAGAIN"); in recvmmsg_packets() 389 CURL_TRC_CF(data, cf, "recvmmsg() -> %d packets", mcount); in recvmmsg_packets()
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/musl/ |
H A D | mod.rs | 713 pub fn recvmmsg( in recvmmsg() functions
|