Home
last modified time | relevance | path

Searched refs:recvmmsg (Results 1 - 25 of 33) sorted by relevance

12

/third_party/ltp/testcases/kernel/syscalls/sendmmsg/
H A Dsendmmsg.h18 { .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 Dsendmmsg_var.h33 return recvmmsg(sockfd, msgvec, vlen, flags, timeout); in libc_recvmmsg()
35 tst_brk(TCONF, "libc recvmmsg not present"); in libc_recvmmsg()
H A Dsendmmsg01.c6 * 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 Drecvmmsg_time32.c8 return recvmmsg(fd, msgvec, vlen, flags, ts32 ? (&(struct timespec){ in __recvmmsg_time32()
/third_party/ltp/include/
H A Dtime64_variants.h57 int (*recvmmsg)(int sockfd, struct mmsghdr *msgvec, unsigned int vlen, member
/third_party/musl/src/network/
H A Drecvmmsg.c13 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 Dsocket.h71 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 Dsocket.h60 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 Dsocket.h71 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 Dsocket.h71 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 Dsocket.h75 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 Dsocket.h71 int recvmmsg (int, struct mmsghdr *, unsigned int, unsigned int, struct timespec *);
406 __REDIR(recvmmsg, __recvmmsg_time64);
/third_party/musl/include/sys/
H A Dsocket.h75 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 Drecvmmsg01.c4 * 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 Dtest.h77 #define __recvmmsg_time64 recvmmsg
/third_party/musl/libc-test/src/functionalext/supplement/network/
H A Drecvmmsg.c109 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 Dnamespace.h215 #define recvmmsg _recvmmsg macro
/third_party/node/deps/uv/src/unix/
H A Dfreebsd.c281 return recvmmsg(fd, in uv__recvmmsg()
/third_party/musl/libc-test/src/functionalext/supplement/network/network_gtest/
H A Dsocket_test.cpp161 * @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 Dtest_socket.rs560 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 Dsocket_test.cpp145 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 Dmod.rs318 pub fn recvmmsg( in recvmmsg() functions
/third_party/rust/crates/nix/src/sys/socket/
H A Dmod.rs1586 /// 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 Dvquic.c25 /* 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 Dmod.rs713 pub fn recvmmsg( in recvmmsg() functions

Completed in 22 milliseconds

12