Home
last modified time | relevance | path

Searched refs:SO_SNDTIMEO (Results 1 - 25 of 50) sorted by relevance

12

/third_party/musl/src/network/
H A Dgetsockopt.c17 case SO_SNDTIMEO: in getsockopt()
21 if (optname==SO_SNDTIMEO) optname=SO_SNDTIMEO_OLD; in getsockopt()
H A Dsetsockopt.c21 case SO_SNDTIMEO: in setsockopt()
30 if (optname==SO_SNDTIMEO) optname=SO_SNDTIMEO_OLD; in setsockopt()
/third_party/musl/arch/x32/bits/
H A Dsocket.h2 #define SO_SNDTIMEO 21 macro
/third_party/musl/arch/powerpc64/bits/
H A Dsocket.h19 #define SO_SNDTIMEO 19 macro
/third_party/musl/arch/mips64/bits/
H A Dsocket.h18 #define SO_SNDTIMEO 0x1005 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H A Dsocket.h230 #define SO_SNDTIMEO 67 macro
233 #define SO_SNDTIMEO 21 macro
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
H A Dsocket.h219 #define SO_SNDTIMEO 67 macro
222 #define SO_SNDTIMEO 21 macro
/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Dsocket.h230 #define SO_SNDTIMEO 67 macro
233 #define SO_SNDTIMEO 21 macro
/third_party/musl/porting/liteos_a/kernel/include/sys/
H A Dsocket.h230 #define SO_SNDTIMEO 67 macro
233 #define SO_SNDTIMEO 21 macro
/third_party/musl/porting/linux/user/include/sys/
H A Dsocket.h234 #define SO_SNDTIMEO 67 macro
237 #define SO_SNDTIMEO 21 macro
/third_party/musl/porting/uniproton/kernel/include/sys/
H A Dsocket.h230 #define SO_SNDTIMEO 67 macro
233 #define SO_SNDTIMEO 21 macro
/third_party/musl/include/sys/
H A Dsocket.h234 #define SO_SNDTIMEO 67 macro
237 #define SO_SNDTIMEO 21 macro
/third_party/musl/libc-test/src/api/
H A Dsys_socket.c75 C(SO_SNDTIMEO) in f()
/third_party/musl/libc-test/src/functionalext/supplement/network/
H A Dgetsockopt_network.c224 * @tc.desc : SOL_SOCKET,SO_SNDTIMEO
232 int content = getsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &optval, (socklen_t *)(&optlen)); in getsockopt_1500()
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbss_dgram.c633 # if defined(SO_SNDTIMEO) in dgram_ctrl()
639 if (setsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, in dgram_ctrl()
646 if (setsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, ptr, in dgram_ctrl()
661 if (getsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, in dgram_ctrl()
672 if (getsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, in dgram_ctrl()
/third_party/openssl/crypto/bio/
H A Dbss_dgram.c633 # if defined(SO_SNDTIMEO) in dgram_ctrl()
639 if (setsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, in dgram_ctrl()
646 if (setsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, ptr, in dgram_ctrl()
661 if (getsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, in dgram_ctrl()
672 if (getsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, in dgram_ctrl()
/third_party/rust/crates/libc/src/unix/linux_like/linux/arch/generic/
H A Dmod.rs41 pub const SO_SNDTIMEO: ::c_int = 21; consts
/third_party/rust/crates/libc/src/unix/linux_like/linux/arch/mips/
H A Dmod.rs36 pub const SO_SNDTIMEO: ::c_int = 0x1005; consts
/third_party/rust/crates/libc/src/unix/linux_like/linux/arch/sparc/
H A Dmod.rs32 pub const SO_SNDTIMEO: ::c_int = 0x4000; consts
/third_party/rust/crates/libc/src/unix/linux_like/linux/arch/powerpc/
H A Dmod.rs25 pub const SO_SNDTIMEO: ::c_int = 19; consts
/third_party/eudev/src/shared/
H A Dlog.c123 (void) setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)); in create_log_socket()
/third_party/rust/crates/rustix/src/backend/libc/net/
H A Dsyscalls.rs548 Timeout::Send => c::SO_SNDTIMEO,
612 Timeout::Send => c::SO_SNDTIMEO,
H A Dtypes.rs685 /// `SO_SNDTIMEO`—Timeout for sending.
686 Send = c::SO_SNDTIMEO,
/third_party/backends/backend/
H A Dnet.c358 /* Set SO_SNDTIMEO for the connection to saned */
364 if (setsockopt (dev->ctl, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)) < 0)
366 DBG (1, "connect_dev: [%d] failed to set SO_SNDTIMEO (%s)\n", i, strerror (errno));
424 /* Set SO_SNDTIMEO for the connection to saned */
430 if (setsockopt (dev->ctl, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)) < 0)
432 DBG (1, "connect_dev: failed to set SO_SNDTIMEO (%s)\n", strerror (errno));
445 /* We're connected now, so reset SO_SNDTIMEO to the default value of 0 */
451 if (setsockopt (dev->ctl, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)) < 0)
453 DBG (1, "connect_dev: failed to reset SO_SNDTIMEO (%s)\n", strerror (errno));
/third_party/lwip/src/include/lwip/
H A Dsockets.h215 #define SO_SNDTIMEO 0x1005 /* send timeout */ macro

Completed in 24 milliseconds

12