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

1 2 3 4 5 6 7 8

  /external/libxml2/include/
wsockcompat.h 45 #ifndef EWOULDBLOCK
46 #define EWOULDBLOCK WSAEWOULDBLOCK
  /external/ltp/testcases/kernel/syscalls/delete_module/
delete_module03.c 11 * Verify that, delete_module(2) returns -1 and sets errno to EWOULDBLOCK,
31 if (TST_ERR == EWOULDBLOCK) {
37 tst_strerrno(EWOULDBLOCK));
  /external/ppp/pppd/plugins/radius/
lock.c 30 errno = EWOULDBLOCK;
  /external/ltp/testcases/kernel/syscalls/futex/
futex_wait01.c 25 * 2. Test if FUTEX_WAIT op returns -EWOULDBLOCK if the futex value differs
48 {&futex, FUTEX_INITIALIZER+1, 0, EWOULDBLOCK},
50 {&futex, FUTEX_INITIALIZER+1, FUTEX_PRIVATE_FLAG, EWOULDBLOCK},
futex_wait04.c 47 if (res == -1 && errno == EWOULDBLOCK)
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
decorate_proc_maps.cc 21 } else if (errno != EAGAIN || errno != EWOULDBLOCK || errno != EINTR) {
  /external/python/cpython2/Lib/plat-irix5/
ERRNO.py 120 EWOULDBLOCK = __KBASE+101
121 EWOULDBLOCK = EAGAIN
  /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/libcxx/include/
errno.h 198 #ifndef EWOULDBLOCK
199 #define EWOULDBLOCK 9930
  /external/ltp/testcases/cve/
cve-2017-17053.c 43 * call to fail whenn the error is EAGAIN or EWOULDBLOCK */
51 if (rval && rval != EAGAIN && rval != EWOULDBLOCK)
57 * call to fail whenn the error is EAGAIN or EWOULDBLOCK */
65 if (pid < 0 && errno != EAGAIN && errno == EWOULDBLOCK)
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/
3-2.c 31 EAGAIN, "EAGAIN", EWOULDBLOCK}, {
108 EWOULDBLOCK, "EWOULDBLOCK", EAGAIN}, {
121 if (tst->value == sym[i].value && tst->duplicate != sym[i].value && strcmp(tst->name, sym[i].name)) { //In case EAGAIN is not equal to EWOULDBLOCK,compare the name
4-1.c 103 EWOULDBLOCK, "EWOULDBLOCK"}, {
  /external/openssh/
atomicio.c 70 if (errno == EAGAIN || errno == EWOULDBLOCK) {
127 if (errno == EAGAIN || errno == EWOULDBLOCK) {
  /external/python/cpython2/Lib/plat-irix6/
ERRNO.py 126 EWOULDBLOCK = __KBASE+101
127 EWOULDBLOCK = EAGAIN
  /bionic/libc/kernel/uapi/asm-generic/
errno.h 28 #define EWOULDBLOCK EAGAIN
  /bionic/libc/kernel/uapi/asm-mips/asm/
errno.h 107 #define EWOULDBLOCK EAGAIN
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
errno.h 94 #define EWOULDBLOCK EAGAIN /* Operation would block */
  /external/kernel-headers/original/uapi/asm-generic/
errno.h 22 #define EWOULDBLOCK EAGAIN /* Operation would block */
  /external/kernel-headers/original/uapi/asm-mips/asm/
errno.h 103 #define EWOULDBLOCK EAGAIN /* Operation would block */
  /external/linux-kselftest/tools/testing/selftests/futex/functional/
futex_wait_wouldblock.c 11 * Test if FUTEX_WAIT op returns -EWOULDBLOCK if the futex value differs
73 if (!res || errno != EWOULDBLOCK) {
  /external/tensorflow/tensorflow/core/platform/posix/
subprocess.h 107 return ((e == EINTR) || (e == EAGAIN) || (e == EWOULDBLOCK));
  /frameworks/av/media/libmediaplayerservice/nuplayer/
StreamingSource.cpp 238 format->setInt32("err", -EWOULDBLOCK);
244 format->setInt32("err", -EWOULDBLOCK);
259 return -EWOULDBLOCK;
268 return finalResult == OK ? -EWOULDBLOCK : finalResult;
  /frameworks/base/cmds/incidentd/src/
FdBuffer.cpp 87 if (errno == EAGAIN || errno == EWOULDBLOCK) {
208 if (!(errno == EAGAIN || errno == EWOULDBLOCK)) {
230 if (!(errno == EAGAIN || errno == EWOULDBLOCK)) {
259 if (!(errno == EAGAIN || errno == EWOULDBLOCK)) {
  /external/iperf3/src/
net.c 320 if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK)
350 #if (EAGAIN != EWOULDBLOCK)
351 case EWOULDBLOCK:
420 #if (EAGAIN != EWOULDBLOCK)
421 case EWOULDBLOCK:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
thread_beos.h 41 if( retval == EOK || retval == EWOULDBLOCK ) {
72 return EWOULDBLOCK;

Completed in 520 milliseconds

1 2 3 4 5 6 7 8