HomeSort by relevance Sort by last modified time
    Searched refs:EWOULDBLOCK (Results 126 - 150 of 284) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/ojluni/src/main/native/
FileChannelImpl.c 261 if (errno == EWOULDBLOCK)
  /prebuilts/go/darwin-x86/src/syscall/
zerrors_windows.go 144 EWOULDBLOCK
279 EWOULDBLOCK - APPLICATION_ERROR: "resource temporarily unavailable",
  /prebuilts/go/linux-x86/src/syscall/
zerrors_windows.go 144 EWOULDBLOCK
279 EWOULDBLOCK - APPLICATION_ERROR: "resource temporarily unavailable",
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/diagnostics/syserr/
errc.pass.cpp 83 static_assert(static_cast<int>(std::errc::operation_would_block) == EWOULDBLOCK, "");
  /system/core/init/
uevent_listener.cpp 99 if (errno != EAGAIN && errno != EWOULDBLOCK) {
  /external/curl/lib/
openldap.c 710 SET_SOCKERRNO(EWOULDBLOCK);
725 SET_SOCKERRNO(EWOULDBLOCK);
  /external/libbrillo/brillo/streams/
file_stream.cc 454 if (errno == EWOULDBLOCK || errno == EAGAIN) {
481 if (errno == EWOULDBLOCK || errno == EAGAIN) {
  /external/llvm/lib/Support/
raw_ostream.cpp 590 // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since
597 #ifdef EWOULDBLOCK
598 || errno == EWOULDBLOCK
  /external/python/cpython3/Lib/
socket.py 61 EWOULDBLOCK = getattr(errno, 'EWOULDBLOCK', 11)
541 _blocking_errnos = { EAGAIN, EWOULDBLOCK }
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
raw_ostream.cpp 563 // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since
570 #ifdef EWOULDBLOCK
571 || errno == EWOULDBLOCK
  /system/media/audio_utils/
fifo.cpp 249 case EWOULDBLOCK:
550 case EWOULDBLOCK:
  /external/kmod/shared/
util.c 52 assert_cc(EAGAIN == EWOULDBLOCK);
  /external/libpcap/
pcap-snit.c 131 if (errno == EWOULDBLOCK)
pcap-snoop.c 95 case EWOULDBLOCK:
pcap-pf.c 117 if (errno == EWOULDBLOCK)
  /external/ppp/pppd/plugins/radius/
buildreq.c 109 if (errno != EWOULDBLOCK) {
  /external/syslinux/gpxe/src/include/
errno.h 454 #define EWOULDBLOCK ( ERRFILE | PXENV_STATUS_TFTP_OPEN | 0x4e000000 )
  /frameworks/native/services/surfaceflinger/
EventThread.cpp 187 if (err == -EAGAIN || err == -EWOULDBLOCK) {
  /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");
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2Decoder.cpp 599 return err == -EWOULDBLOCK
884 if (err == -EWOULDBLOCK) {
926 return -EWOULDBLOCK;
    [all...]
GenericSource2.cpp 799 return -EWOULDBLOCK;
805 return -EWOULDBLOCK;
813 return -EWOULDBLOCK;
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.cpp 578 return err == -EWOULDBLOCK
865 if (err == -EWOULDBLOCK) {
907 return -EWOULDBLOCK;
    [all...]
  /external/libmicrohttpd/src/microhttpd/
connection.c     [all...]
  /external/libvncserver/libvncclient/
tls_openssl.c 584 if (errno == EAGAIN || errno == EWOULDBLOCK) continue;
  /external/libxkbcommon/xkbcommon/test/
interactive-evdev.c 293 if (len < 0 && errno != EWOULDBLOCK) {

Completed in 711 milliseconds

1 2 3 4 56 7 8 91011>>