Home
last modified time | relevance | path

Searched refs:EWOULDBLOCK (Results 1 – 25 of 165) sorted by relevance

1234567

/external/libxml2/include/
Dwsockcompat.h45 #ifndef EWOULDBLOCK
46 #define EWOULDBLOCK WSAEWOULDBLOCK macro
/external/iperf3/src/
Dnet.c320 if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK) in Nread()
350 #if (EAGAIN != EWOULDBLOCK) in Nwrite()
351 case EWOULDBLOCK: in Nwrite()
420 #if (EAGAIN != EWOULDBLOCK) in Nsendfile()
421 case EWOULDBLOCK: in Nsendfile()
/external/ltp/testcases/kernel/syscalls/delete_module/
Ddelete_module03.c31 if (TST_ERR == EWOULDBLOCK) { in do_delete_module()
37 tst_strerrno(EWOULDBLOCK)); in do_delete_module()
/external/webrtc/webrtc/base/
Dopenssladapter.cc474 SetError(EWOULDBLOCK); in Send()
499 SetError(EWOULDBLOCK); in Send()
503 SetError(EWOULDBLOCK); in Send()
507 SetError(EWOULDBLOCK); in Send()
541 SetError(EWOULDBLOCK); in Recv()
565 SetError(EWOULDBLOCK); in Recv()
570 SetError(EWOULDBLOCK); in Recv()
574 SetError(EWOULDBLOCK); in Recv()
Dsocket.h37 #undef EWOULDBLOCK // Remove errno.h's definition for each macro below.
38 #define EWOULDBLOCK WSAEWOULDBLOCK macro
124 return (e == EWOULDBLOCK) || (e == EAGAIN) || (e == EINPROGRESS); in IsBlockingError()
/external/ltp/testcases/kernel/syscalls/futex/
Dfutex_wait01.c48 {&futex, FUTEX_INITIALIZER+1, 0, EWOULDBLOCK},
50 {&futex, FUTEX_INITIALIZER+1, FUTEX_PRIVATE_FLAG, EWOULDBLOCK},
Dfutex_wait04.c47 if (res == -1 && errno == EWOULDBLOCK) in verify_futex_wait()
/external/python/cpython2/Lib/plat-irix5/
DERRNO.py120 EWOULDBLOCK = __KBASE+101 variable
121 EWOULDBLOCK = EAGAIN variable
/external/ltp/testcases/cve/
Dcve-2017-17053.c51 if (rval && rval != EAGAIN && rval != EWOULDBLOCK) in try_pthread_create()
65 if (pid < 0 && errno != EAGAIN && errno == EWOULDBLOCK) in try_fork()
/external/python/cpython2/Lib/plat-irix6/
DERRNO.py126 EWOULDBLOCK = __KBASE+101 variable
127 EWOULDBLOCK = EAGAIN variable
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/
D3-2.c31 EAGAIN, "EAGAIN", EWOULDBLOCK}, {
108 EWOULDBLOCK, "EWOULDBLOCK", EAGAIN}, {
/external/libcxx/include/
Derrno.h198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930 macro
D__errc81 operation_would_block, // EWOULDBLOCK
190 operation_would_block = EWOULDBLOCK,
/external/openssh/
Datomicio.c70 if (errno == EAGAIN || errno == EWOULDBLOCK) { in atomicio6()
127 if (errno == EAGAIN || errno == EWOULDBLOCK) { in atomiciov6()
/external/boringssl/src/crypto/bio/
Dfd.c83 #ifdef EWOULDBLOCK in OPENSSL_MSVC_PRAGMA()
84 err == EWOULDBLOCK || in OPENSSL_MSVC_PRAGMA()
/external/python/cpython2/Python/
Dthread_beos.h41 if( retval == EOK || retval == EWOULDBLOCK ) { in benaphore_destroy()
72 return EWOULDBLOCK; in benaphore_timedlock()
/external/selinux/libselinux/src/
Davc_internal.c112 errno = EWOULDBLOCK; in avc_netlink_receive()
233 if (errno == EWOULDBLOCK) in avc_netlink_check_nb()
/external/libcxx/test/std/diagnostics/errno/
Dcerrno.pass.cpp331 #ifndef EWOULDBLOCK
332 #error EWOULDBLOCK not defined
/external/python/cpython3/Lib/
Dasyncore.py56 from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \
334 if err in (EINPROGRESS, EALREADY, EWOULDBLOCK) \
351 if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN):
363 if why.args[0] == EWOULDBLOCK:
/external/python/cpython2/Lib/
Dasyncore.py56 from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \
348 if err in (EINPROGRESS, EALREADY, EWOULDBLOCK) \
365 if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN):
377 if why.args[0] == EWOULDBLOCK:
/external/curl/lib/
Dcurl_setup_once.h430 #undef EWOULDBLOCK /* override definition in errno.h */
431 #define EWOULDBLOCK WSAEWOULDBLOCK macro
/external/ppp/pppd/plugins/radius/
Dlock.c30 errno = EWOULDBLOCK; in do_lock_exclusive()
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
Ddecorate_proc_maps.cc21 } else if (errno != EAGAIN || errno != EWOULDBLOCK || errno != EINTR) { in CopyFdToFd()
/external/linux-kselftest/tools/testing/selftests/futex/functional/
Dfutex_wait_wouldblock.c73 if (!res || errno != EWOULDBLOCK) { in main()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
Dsystem_error.h412 # ifndef EWOULDBLOCK
413 # define EWOULDBLOCK 140 macro
582 operation_would_block = EWOULDBLOCK,

1234567