Home
last modified time | relevance | path

Searched refs:FIONBIO (Results 1 – 25 of 106) sorted by relevance

12345

/third_party/libcoap/src/
Dcoap_tcp.c70 if (ioctlsocket(sock->fd, FIONBIO, &u_on) == COAP_SOCKET_ERROR) {
72 if (ioctl(sock->fd, FIONBIO, &on) == COAP_SOCKET_ERROR) {
225 if (ioctlsocket(sock->fd, FIONBIO, &u_on) == COAP_SOCKET_ERROR) {
227 if (ioctl(sock->fd, FIONBIO, &on) == COAP_SOCKET_ERROR) {
327 if (ioctlsocket(new_client->fd, FIONBIO, &u_on) == COAP_SOCKET_ERROR) {
329 if (ioctl(new_client->fd, FIONBIO, &on) == COAP_SOCKET_ERROR) {
/third_party/curl/lib/
Dnonblock.c61 return ioctl(sockfd, FIONBIO, &flags); in curlx_nonblock()
67 return ioctlsocket(sockfd, FIONBIO, &flags); in curlx_nonblock()
73 return IoctlSocket(sockfd, FIONBIO, (char *)&flags); in curlx_nonblock()
/third_party/curl/CMake/
DCurlTests.c177 unsigned long flags = ioctlsocket(socket, FIONBIO, &flags); in main()
214 if(0 != IoctlSocket(0, FIONBIO, &flags)) in main()
232 if(0 != ioctlsocket(0, FIONBIO, &flags)) in main()
260 if(0 != ioctl(0, FIONBIO, &flags)) in main()
/third_party/lwip/
D0072-add-O_NONBLOCK-and-FIONBIO-when-not-defined.patch9 +#ifndef FIONBIO
10 #define FIONBIO 0x5421 /* same as define in asm-generic/ioctls.h */
/third_party/skia/third_party/externals/microhttpd/src/platform/
Dw32functions.c588 if (0 == ioctlsocket(client_s, FIONBIO, (u_long*) &opt) in MHD_W32_pair_of_sockets_()
605 && 0 == ioctlsocket(client_s, FIONBIO, (u_long*) &opt) in MHD_W32_pair_of_sockets_()
606 && 0 == ioctlsocket(server_s, FIONBIO, (u_long*) &opt)) in MHD_W32_pair_of_sockets_()
/third_party/node/deps/cares/src/lib/
Dares__socket.c119 return ioctl(sockfd, FIONBIO, &flags); in setsocknonblock()
129 return ioctlsocket(sockfd, (long)FIONBIO, &flags); in setsocknonblock()
135 return IoctlSocket(sockfd, FIONBIO, flags); in setsocknonblock()
/third_party/node/deps/openssl/openssl/crypto/bio/
Dbio_sock.c318 # ifdef FIONBIO in BIO_socket_nbio()
321 ret = BIO_socket_ioctl(s, FIONBIO, &l); in BIO_socket_nbio()
/third_party/openssl/crypto/bio/
Dbio_sock.c318 # ifdef FIONBIO in BIO_socket_nbio()
321 ret = BIO_socket_ioctl(s, FIONBIO, &l); in BIO_socket_nbio()
/third_party/rust/crates/libc/src/unix/newlib/arm/
Dmod.rs37 pub const FIONBIO: ::c_ulong = 1; constant
/third_party/rust/crates/libc/src/unix/newlib/aarch64/
Dmod.rs35 pub const FIONBIO: ::c_ulong = 1; constant
/third_party/libuv/test/
Dtest-poll-closesocket.c70 r = ioctlsocket(sock, FIONBIO, &on); in TEST_IMPL()
Dtest-poll-close-doesnt-corrupt-stack.c87 r = ioctlsocket(sock, FIONBIO, &on); in TEST_IMPL()
/third_party/rust/crates/rustix/src/backend/libc/io/
Dwindows_syscalls.rs27 ret(c::ioctl(borrowed_fd(fd), c::FIONBIO, &mut data)) in ioctl_fionbio()
/third_party/lwip/src/include/lwip/
Dsockets.h402 #if !defined(FIONREAD) || !defined(FIONBIO)
420 #ifndef FIONBIO
421 #define FIONBIO _IOW('f', 126, unsigned long) /* set/clear non-blocking i/o */ macro
/third_party/musl/porting/liteos_m/kernel/include/bits/
Dioctl.h44 #define FIONBIO 0x5421 macro
/third_party/musl/arch/generic/bits/
Dioctl.h44 #define FIONBIO 0x5421 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/
Dioctl.h44 #define FIONBIO 0x5421 macro
/third_party/musl/porting/uniproton/kernel/include/bits/
Dioctl.h44 #define FIONBIO 0x5421 macro
/third_party/pulseaudio/src/pulsecore/
Dpipe.c63 if (ioctlsocket(fd, FIONBIO, &arg) < 0) in set_block()
/third_party/musl/arch/mips64/bits/
Dioctl.h42 #define FIONBIO 0x667E macro
/third_party/musl/arch/mips/bits/
Dioctl.h42 #define FIONBIO 0x667E macro
/third_party/musl/arch/mipsn32/bits/
Dioctl.h42 #define FIONBIO 0x667E macro
/third_party/rust/crates/libc/src/unix/newlib/espidf/
Dmod.rs65 pub const FIONBIO: ::c_ulong = 2147772030; constant
/third_party/musl/arch/powerpc64/bits/
Dioctl.h14 #define FIONBIO _IOW('f', 126, int) macro
/third_party/musl/porting/liteos_a/kernel/include/bits/
Dioctl.h61 #define FIONBIO 0x5421 macro

12345