HomeSort by relevance Sort by last modified time
    Searched refs:ioctlsocket (Results 1 - 25 of 30) sorted by null

1 2

  /external/conscrypt/common/src/jni/main/cpp/conscrypt/
netutil.cc 45 int res = ioctlsocket(fd, FIONBIO, &flag);
47 JNI_TRACE("ioctlsocket %d failed with error: %d", fd, WSAGetLastError());
  /external/curl/lib/
nonblock.c 73 return ioctlsocket(sockfd, FIONBIO, &flags);
79 return IoctlSocket(sockfd, FIONBIO, (char *)&flags);
curl_setup.h 456 # define ioctl(x,y,z) ioctlsocket(x,y,(char *)(z))
  /external/boringssl/src/crypto/bio/
socket_helper.c 89 return 0 == ioctlsocket(sock, FIONBIO, &arg);
  /external/curl/CMake/
CurlTests.c 320 /* ioctlsocket source code */
322 unsigned long flags = ioctlsocket(socket, FIONBIO, &flags);
349 /* IoctlSocket source code */
350 if(0 != IoctlSocket(0, 0, 0))
376 /* IoctlSocket source code */
378 if(0 != ioctlsocket(0, FIONBIO, &flags))
405 if(0 != ioctlsocket(0, FIONBIO, &flags))
  /external/libmicrohttpd/src/platform/
w32functions.c 588 if (0 == ioctlsocket(client_s, FIONBIO, (u_long*) &opt)
605 && 0 == ioctlsocket(client_s, FIONBIO, (u_long*) &opt)
606 && 0 == ioctlsocket(server_s, FIONBIO, (u_long*) &opt))
  /external/mesa3d/src/gallium/auxiliary/util/
u_network.c 187 ioctlsocket(s, FIONBIO, &iMode);
  /external/xmlrpcpp/src/
XmlRpcSocket.cpp 93 return (ioctlsocket((SOCKET)fd, FIONBIO, &flag) == 0);
  /external/syslinux/core/lwip/src/include/lwip/
sockets.h 225 * Commands for ioctlsocket(), taken from the BSD file fcntl.h.
360 #define ioctlsocket(a,b,c) lwip_ioctl(a,b,c) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winsock.h 281 WINSOCK_API_LINKAGE int WSAAPI ioctlsocket(SOCKET s,__LONG32 cmd,u_long *argp);
winsock2.h     [all...]
  /external/boringssl/src/tool/
transport_common.cc 309 ok = 0 == ioctlsocket(sock, FIONBIO, &arg);
  /external/deqp/framework/delibs/deutil/
deSocket.c 473 if (ioctlsocket(fd, FIONBIO, &mode) != 0)
  /external/libvncserver/libvncclient/
sockets.c 649 if(ioctlsocket(sock, FIONBIO, &block) == SOCKET_ERROR) {
  /external/curl/tests/server/
tftpd.c 644 (void) ioctlsocket(f, FIONREAD, &i);
    [all...]
  /external/fio/os/windows/
posix.c 461 status = ioctlsocket((SOCKET)fildes, opt, &val);
  /external/libvncserver/libvncserver/
sockets.c 1070 if(ioctlsocket(sock, FIONBIO, &block) == SOCKET_ERROR) {
  /external/libxml2/
nanohttp.c 896 status = ioctlsocket(s, FIONBIO, &one) == SOCKET_ERROR ? -1 : 0;
    [all...]
  /external/webrtc/webrtc/base/
physicalsocketserver.cc 576 ioctlsocket(s_, FIONBIO, &argp);
    [all...]
  /external/libmicrohttpd/src/microhttpd/
daemon.c     [all...]
  /external/libevent/
evutil.c 318 if (ioctlsocket(fd, FIONBIO, &nonblocking) == SOCKET_ERROR) {
    [all...]
  /system/core/adb/
sysdeps_win32.cpp     [all...]
  /external/mdnsresponder/mDNSShared/
uds_daemon.c     [all...]
  /external/mdnsresponder/mDNSWindows/SystemService/
Service.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
socketmodule.c 661 ioctlsocket(s->sock_fd, FIONBIO, (u_long*)&block);
    [all...]

Completed in 1405 milliseconds

1 2