Searched defs:EWOULDBLOCK (Results 1 - 10 of 10) sorted by relevance

/external/qemu/slirp/
H A Dslirp.h38 # define EWOULDBLOCK WSAEWOULDBLOCK macro
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsocket.h53 #undef EWOULDBLOCK // Remove errno.h's definition for each macro below. macro
54 #define EWOULDBLOCK WSAEWOULDBLOCK macro
140 return (e == EWOULDBLOCK) || (e == EAGAIN) || (e == EINPROGRESS);
/external/qemu/
H A Dsockets.h41 # ifndef EWOULDBLOCK
42 # define EWOULDBLOCK EAGAIN macro
/external/kernel-headers/original/asm-generic/
H A Derrno.h12 #define EWOULDBLOCK EAGAIN /* Operation would block */ macro
/external/kernel-headers/original/asm-mips/
H A Derrno.h102 #define EWOULDBLOCK EAGAIN /* Operation would block */ macro
/external/llvm/include/llvm/Support/
H A Dsystem_error.h183 operation_would_block, // EWOULDBLOCK
412 # ifndef EWOULDBLOCK
413 # define EWOULDBLOCK 140 macro
571 operation_would_block = EWOULDBLOCK,
/external/netperf/
H A Dnetlib.h297 #define EWOULDBLOCK WSAEWOULDBLOCK macro
/external/openssh/
H A Ddefines.h791 #ifndef EWOULDBLOCK
792 # define EWOULDBLOCK EAGAIN macro
/external/quake/quake/src/WinQuake/
H A Dnet_bw.cpp34 #define EWOULDBLOCK 35 /* function would block */ macro
269 case BW_ERR_BLOCK: return EWOULDBLOCK;
/external/okhttp/src/main/java/libcore/io/
H A DOsConstants.java137 public static final int EWOULDBLOCK = placeholder(); field in class:OsConstants
707 if (errno == EWOULDBLOCK) {
708 return "EWOULDBLOCK";

Completed in 1600 milliseconds