Home
last modified time | relevance | path

Searched refs:set_tcp_nodelay (Results 1 – 10 of 10) sorted by relevance

/third_party/rust/crates/rustix/src/net/
Dsockopt.rs620 pub fn set_tcp_nodelay<Fd: AsFd>(fd: Fd, nodelay: bool) -> io::Result<()> { in set_tcp_nodelay() function
621 backend::net::syscalls::sockopt::set_tcp_nodelay(fd.as_fd(), nodelay) in set_tcp_nodelay()
/third_party/node/deps/npm/node_modules/socks/build/client/
Dsocksclient.js252 if (this.options.set_tcp_nodelay !== undefined &&
253 this.options.set_tcp_nodelay !== null) {
254 this.socket.setNoDelay(!!this.options.set_tcp_nodelay);
/third_party/rust/crates/rustix/tests/net/
Dsockopt.rs139 rustix::net::sockopt::set_tcp_nodelay(&s, true).unwrap(); in test_sockopts()
/third_party/nghttp2/examples/
Dclient.c451 static void set_tcp_nodelay(int fd) { in set_tcp_nodelay() function
569 set_tcp_nodelay(fd); in fetch_uri()
/third_party/skia/third_party/externals/microhttpd/src/testspdy/
Dtest_request_response.c551 static void set_tcp_nodelay(int fd) in set_tcp_nodelay() function
680 set_tcp_nodelay(fd); in fetch_uri()
Dtest_new_connection.c563 static void set_tcp_nodelay(int fd) in set_tcp_nodelay() function
692 set_tcp_nodelay(fd); in fetch_uri()
Dtest_notls.c515 static void set_tcp_nodelay(int fd) in set_tcp_nodelay() function
630 set_tcp_nodelay(fd); in fetch_uri()
/third_party/rust/crates/rustix/src/backend/libc/net/
Dsyscalls.rs818 pub(crate) fn set_tcp_nodelay(fd: BorrowedFd<'_>, nodelay: bool) -> io::Result<()> { in set_tcp_nodelay() function
/third_party/rust/crates/rustix/src/backend/linux_raw/net/
Dsyscalls.rs1193 pub(crate) fn set_tcp_nodelay(fd: BorrowedFd<'_>, nodelay: bool) -> io::Result<()> { in set_tcp_nodelay() function
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs8386 if (this.options.set_tcp_nodelay !== void 0 && this.options.set_tcp_nodelay !== null) {
8387 this.socket.setNoDelay(!!this.options.set_tcp_nodelay);