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

1 2

  /external/libxml2/include/
wsockcompat.h 39 #ifndef EINTR
40 #define EINTR WSAEINTR
  /bionic/libc/kernel/uapi/asm-generic/
errno-base.h 24 #define EINTR 4
  /external/kernel-headers/original/uapi/asm-generic/
errno-base.h 8 #define EINTR 4 /* Interrupted system call */
  /external/libusb/msvc/
errno.h 28 #define EINTR 4 /* Interrupted function call */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
socket.py 98 EINTR = getattr(errno, 'EINTR', 4)
357 if e.args[0] == EINTR:
386 if e.args[0] == EINTR:
439 # The try..except to catch EINTR was moved outside the
441 if e.args[0] == EINTR:
453 if e.args[0] == EINTR:
482 if e.args[0] == EINTR:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
socket.py 94 EINTR = getattr(errno, 'EINTR', 4)
353 if e.args[0] == EINTR:
382 if e.args[0] == EINTR:
435 # The try..except to catch EINTR was moved outside the
437 if e.args[0] == EINTR:
449 if e.args[0] == EINTR:
478 if e.args[0] == EINTR:
  /external/curl/tests/server/
util.c 55 #undef EINTR
56 #define EINTR 4 /* errno.h value */
248 if(error && (error != EINTR))
285 } while((lockfile == NULL) && ((error = errno) == EINTR));
294 } while(res && ((error = errno) == EINTR));
313 } while(res && ((error = errno) == EINTR));
rtspd.c 61 #undef EINTR
62 #define EINTR 4 /* errno.h value */
746 } while((dump == NULL) && ((error = errno) == EINTR));
762 } while((writeleft > 0) && ((error = errno) == EINTR));
777 } while(res && ((error = errno) == EINTR));
    [all...]
sockfilt.c 116 #undef EINTR
117 #define EINTR 4 /* errno.h value */
374 if((error == EINTR) || (error == EAGAIN))
420 if((error == EINTR) || (error == EAGAIN))
1020 } while((rc == -1) && ((error = errno) == EINTR));
    [all...]
sws.c 63 #undef EINTR
64 #define EINTR 4 /* errno.h value */
915 } while((dump == NULL) && ((error = errno) == EINTR));
931 } while((writeleft > 0) && ((error = errno) == EINTR));
946 } while(res && ((error = errno) == EINTR));
    [all...]
  /external/python/cpython2/Lib/
socket.py 98 EINTR = getattr(errno, 'EINTR', 4)
357 if e.args[0] == EINTR:
386 if e.args[0] == EINTR:
439 # The try..except to catch EINTR was moved outside the
441 if e.args[0] == EINTR:
453 if e.args[0] == EINTR:
482 if e.args[0] == EINTR:
  /external/curl/lib/
curl_setup_once.h 426 #undef EINTR /* override definition in errno.h */
427 #define EINTR WSAEINTR
  /external/libcxx/include/
errno.h 312 #ifndef EINTR
313 #define EINTR 9959
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
errno.h 52 #define EINTR 4 /* Interrupted system call */
  /device/linaro/bootloader/edk2/StdLib/Include/
errno.h 56 #define EINTR __EINTR /* 4 Interrupted system call */
  /external/python/cpython2/Lib/plat-irix5/
ERRNO.py 12 EINTR = 4
  /external/u-boot/include/linux/
errno.h 7 #define EINTR 4 /* Interrupted system call */
  /external/python/cpython2/Lib/plat-irix6/
ERRNO.py 16 EINTR = 4
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
system_error.h 151 interrupted, // EINTR
316 # ifndef EINTR
317 # define EINTR 4
530 interrupted = EINTR,
  /external/v8/tools/profviz/
gnuplot-4.6.3-emscripten.js     [all...]
  /external/syzkaller/vendor/golang.org/x/sys/unix/
zerrors_solaris_amd64.go     [all...]
zerrors_darwin_386.go     [all...]
zerrors_darwin_amd64.go     [all...]
zerrors_darwin_arm.go     [all...]
  /external/python/cpython2/Lib/plat-sunos5/
STROPTS.py 950 EINTR = 4
    [all...]

Completed in 1576 milliseconds

1 2