HomeSort by relevance Sort by last modified time
    Searched defs:EWOULDBLOCK (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/libxml2/include/
wsockcompat.h 45 #ifndef EWOULDBLOCK
46 #define EWOULDBLOCK WSAEWOULDBLOCK
  /external/libmicrohttpd/src/include/
w32functions.h 44 #ifndef EWOULDBLOCK
45 #define EWOULDBLOCK (MHDW32ERRBASE+1)
  /external/python/cpython3/Modules/
errnomodule.c 36 #undef EWOULDBLOCK
269 #ifdef EWOULDBLOCK
270 inscode(d, ds, de, "EWOULDBLOCK", EWOULDBLOCK, "Operation would block");
273 inscode(d, ds, de, "EWOULDBLOCK", WSAEWOULDBLOCK, "Operation would block");
  /external/xmlrpcpp/src/
XmlRpcSocket.cpp 13 # define EWOULDBLOCK WSAEWOULDBLOCK
61 return (err == EINPROGRESS || err == EAGAIN || err == EWOULDBLOCK || err == EINTR);
161 // For asynch operation, this will return EWOULDBLOCK (windows) or
  /external/libvncserver/libvncclient/
sockets.c 42 #define EWOULDBLOCK WSAEWOULDBLOCK
167 if (errno == EWOULDBLOCK || errno == EAGAIN) {
206 if (errno == EWOULDBLOCK || errno == EAGAIN) {
270 if (errno == EWOULDBLOCK ||
  /external/libvncserver/libvncserver/
sockets.c 19 * not EWOULDBLOCK.
108 #define EWOULDBLOCK WSAEWOULDBLOCK
609 if (errno != EWOULDBLOCK && errno != EAGAIN) {
695 if (errno != EWOULDBLOCK && errno != EAGAIN) {
794 if (errno != EWOULDBLOCK && errno != EAGAIN) {
  /external/python/cpython3/Lib/
socket.py 61 EWOULDBLOCK = getattr(errno, 'EWOULDBLOCK', 11)
541 _blocking_errnos = { EAGAIN, EWOULDBLOCK }
  /external/webrtc/webrtc/base/
socket.h 37 #undef EWOULDBLOCK // Remove errno.h's definition for each macro below.
38 #define EWOULDBLOCK WSAEWOULDBLOCK
124 return (e == EWOULDBLOCK) || (e == EAGAIN) || (e == EINPROGRESS);
  /external/curl/lib/
curl_setup_once.h 449 #undef EWOULDBLOCK /* override definition in errno.h */
450 #define EWOULDBLOCK WSAEWOULDBLOCK
  /external/libcxx/include/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/linux-x86/clang-4393122/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
errno.h 165 #ifndef EWOULDBLOCK
166 #define EWOULDBLOCK 140

Completed in 1189 milliseconds

1 2 3 4 5