Home
last modified time | relevance | path

Searched refs:ioctlsocket (Results 1 - 25 of 39) sorted by relevance

12

/third_party/node/deps/openssl/openssl/include/internal/
H A Dsockets.h143 # define ioctlsocket(a,b,c) ioctl(a,b,c) macro
148 # define ioctlsocket(a,b,c) ioctl((a),(b),(int)(c)) macro
161 # define ioctlsocket(a,b,c) ioctl(a,b,c) macro
164 # define ioctlsocket(a,b,c) ioctl(a,b,c) macro
/third_party/openssl/include/internal/
H A Dsockets.h143 # define ioctlsocket(a,b,c) ioctl(a,b,c) macro
148 # define ioctlsocket(a,b,c) ioctl((a),(b),(int)(c)) macro
161 # define ioctlsocket(a,b,c) ioctl(a,b,c) macro
164 # define ioctlsocket(a,b,c) ioctl(a,b,c) macro
/third_party/openssl/ohos_lite/include/internal/
H A Dsockets.h141 # define ioctlsocket(a,b,c) ioctl(a,b,c) macro
146 # define ioctlsocket(a,b,c) ioctl((a),(b),(int)(c)) macro
151 # define ioctlsocket(a,b,c) ioctl(a,b,c) macro
/third_party/libcoap/src/
H A Dcoap_tcp.c70 if (ioctlsocket(sock->fd, FIONBIO, &u_on) == COAP_SOCKET_ERROR) {
225 if (ioctlsocket(sock->fd, FIONBIO, &u_on) == COAP_SOCKET_ERROR) {
327 if (ioctlsocket(new_client->fd, FIONBIO, &u_on) == COAP_SOCKET_ERROR) {
/third_party/skia/third_party/externals/microhttpd/src/platform/
H A 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/curl/CMake/
H A DCurlTests.c175 /* ioctlsocket source code */ in main()
177 unsigned long flags = ioctlsocket(socket, FIONBIO, &flags); in main()
232 if(0 != ioctlsocket(0, FIONBIO, &flags)) in main()
/third_party/curl/lib/
H A Dnonblock.c67 return ioctlsocket(sockfd, FIONBIO, &flags); in curlx_nonblock()
H A Dcurl_setup.h562 # define ioctl(x,y,z) ioctlsocket(x,y,(char *)(z))
/third_party/libuv/test/
H A Dtest-poll-closesocket.c70 r = ioctlsocket(sock, FIONBIO, &on); in TEST_IMPL()
H A Dtest-poll-close-doesnt-corrupt-stack.c87 r = ioctlsocket(sock, FIONBIO, &on); in TEST_IMPL()
H A Dtest-pipe-sendmsg.c47 r = ioctlsocket(sock, FIONBIO, &on); in set_nonblocking()
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbio_sock.c180 i = ioctlsocket(fd, type, (char *)arg); in BIO_socket_ioctl()
206 i = ioctlsocket(fd, type, ARG); in BIO_socket_ioctl()
210 "calling ioctlsocket()"); in BIO_socket_ioctl()
/third_party/openssl/crypto/bio/
H A Dbio_sock.c180 i = ioctlsocket(fd, type, (char *)arg); in BIO_socket_ioctl()
206 i = ioctlsocket(fd, type, ARG); in BIO_socket_ioctl()
210 "calling ioctlsocket()"); in BIO_socket_ioctl()
/third_party/lwip/src/include/lwip/
H A Dsockets.h393 * Commands for ioctlsocket(), taken from the BSD file fcntl.h.
557 #define lwip_ioctl ioctlsocket
572 #define ioctlsocket ioctl macro
675 #define ioctlsocket(s,cmd,argp) lwip_ioctl(s,cmd,argp) macro
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_network.c194 ioctlsocket(s, FIONBIO, &iMode); in u_socket_block()
/third_party/pulseaudio/src/pulsecore/
H A Dpipe.c63 if (ioctlsocket(fd, FIONBIO, &arg) < 0) in set_block()
/third_party/backends/sanei/
H A Dsanei_udp.c194 ioctlsocket(fd, FIONBIO, &mode); in sanei_udp_set_nonblock()
/third_party/mbedtls/library/
H A Dnet_sockets.c465 return ioctlsocket(ctx->fd, FIONBIO, &n);
480 return ioctlsocket(ctx->fd, FIONBIO, &n);
/third_party/ffmpeg/libavformat/
H A Dos_support.c216 return ioctlsocket(socket, FIONBIO, &param); in ff_socket_nonblock()
/third_party/jerryscript/jerry-ext/debugger/
H A Ddebugger-tcp.c335 if (ioctlsocket (tcp_socket, (long)FIONBIO, &nonblocking_enabled) != NO_ERROR) in jerryx_debugger_tcp_create()
/third_party/skia/third_party/externals/tint/tools/src/cmd/remote-compile/
H A Dsocket.cc66 return ioctlsocket(s, FIONBIO, &mode) == NO_ERROR; in setBlocking()
/third_party/node/deps/openssl/openssl/
H A De_os.h344 # define ioctlsocket(a,b,c) ioctl(a,b,c) macro
385 # define ioctlsocket(a,b,c) ioctl(a,b,c)
/third_party/openssl/
H A De_os.h344 # define ioctlsocket(a,b,c) ioctl(a,b,c) macro
385 # define ioctlsocket(a,b,c) ioctl(a,b,c)
/third_party/gn/src/base/files/
H A Dfile_util_win.cc674 if (ioctlsocket(fd, FIONBIO, &nonblocking) == 0) in SetNonBlocking()
/third_party/libuv/src/win/
H A Dpoll.c424 if (ioctlsocket(socket, FIONBIO, &yes) == SOCKET_ERROR) in uv_poll_init_socket()

Completed in 26 milliseconds

12