HomeSort by relevance Sort by last modified time
    Searched refs:EAGAIN (Results 226 - 250 of 805) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/internal/poll/
writev.go 67 if e0 == syscall.EAGAIN {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/diagnostics/errno/
cerrno.pass.cpp 39 #ifndef EAGAIN
40 #error EAGAIN not defined
  /system/core/libappfuse/
FuseBuffer.cc 61 if (errno == EAGAIN) {
115 case EAGAIN:
  /system/extras/simpleperf/
UnixSocket.cpp 138 } else if (errno != EAGAIN) {
167 if (errno == EAGAIN) {
  /system/libfmq/
EventFlag.cpp 162 * changed, it fails with the error EAGAIN; If a timeout
177 if (status != -EAGAIN && status != -ETIMEDOUT) {
226 if ((status != -EAGAIN) && (status != -EINTR)) {
  /external/libvncserver/libvncserver/
websockets.c 525 if (errno != EAGAIN)
560 errno = EAGAIN;
569 errno = EAGAIN;
591 errno = EAGAIN;
674 errno = EAGAIN;
  /external/libbrillo/brillo/streams/
file_stream_unittest.cc 423 .WillOnce(SetErrnoAndReturn(EAGAIN, -1));
450 .WillOnce(SetErrnoAndReturn(EAGAIN, -1));
467 .WillOnce(SetErrnoAndReturn(EAGAIN, -1));
483 .WillOnce(SetErrnoAndReturn(EAGAIN, -1));
489 .WillOnce(SetErrnoAndReturn(EAGAIN, -1));
493 .WillOnce(SetErrnoAndReturn(EAGAIN, -1));
563 .WillOnce(SetErrnoAndReturn(EAGAIN, -1));
589 .WillOnce(SetErrnoAndReturn(EAGAIN, -1));
612 .WillOnce(SetErrnoAndReturn(EAGAIN, -1));
628 .WillOnce(SetErrnoAndReturn(EAGAIN, -1))
    [all...]
  /external/drm_hwcomposer/
drmresources.cpp 274 return -EAGAIN;
284 } else if (ret != -EAGAIN) {
295 } else if (ret != -EAGAIN) {
  /external/libvncserver/libvncclient/
tls_openssl.c 129 return EAGAIN;
559 if (errno != EAGAIN) {
584 if (errno == EAGAIN || errno == EWOULDBLOCK) continue;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
system_error.h 190 resource_unavailable_try_again, // EAGAIN
433 # ifndef EAGAIN
434 # define EAGAIN 11
597 resource_unavailable_try_again = EAGAIN,
  /frameworks/av/cmds/stagefright/
codec.cpp 201 CHECK_EQ(err, -EAGAIN);
227 CHECK_EQ(err, -EAGAIN);
305 CHECK_EQ(err, -EAGAIN);
  /system/core/liblog/
logger_read.c 415 if ((pollval == -EINTR) || (pollval == -EAGAIN)) {
416 return -EAGAIN;
440 return (ret < 0) ? ret : -EAGAIN;
  /bionic/libc/bionic/
pthread_key.cpp 131 return EAGAIN;
semaphore.cpp 301 errno = EAGAIN;
  /bionic/libc/private/
bionic_errdefs.h 50 __BIONIC_ERRDEF( EAGAIN , 11, "Try again" )
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pty.py 91 if e.errno != errno.EAGAIN:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
fileio.c 496 if (errno == EAGAIN)
582 if (errno == EAGAIN) {
638 if (errno == EAGAIN)
679 if (errno == EAGAIN)
  /external/boringssl/src/crypto/fipsmodule/rand/
urandom.c 129 } else if (getrandom_ret == -1 && errno == EAGAIN) {
  /external/e2fsprogs/util/
copy_sparse.c 73 if ((errno == EINTR) || (errno == EAGAIN))
  /external/libcxx/src/
mutex.cpp 151 __throw_system_error(EAGAIN, "recursive_timed_mutex lock limit reached");
  /external/libmicrohttpd/src/examples/
mhd2spdy_spdy.c 189 case EAGAIN:
190 #if EAGAIN != EWOULDBLOCK
262 case EAGAIN:
263 #if EAGAIN != EWOULDBLOCK
  /external/libmicrohttpd/src/testspdy/
test_notls.c 220 case EAGAIN:
221 #if EAGAIN != EWOULDBLOCK
261 case EAGAIN:
262 #if EAGAIN != EWOULDBLOCK
  /external/linux-kselftest/tools/testing/selftests/net/
msg_zerocopy.c 180 if (ret == -1 && errno == EAGAIN)
317 if (ret == -1 && errno == EAGAIN)
511 if (ret == -1 && errno == EAGAIN)
530 if (ret == -1 && errno == EAGAIN)
  /external/ltp/lib/
errnos.h 43 STRPAIR(EAGAIN, "EAGAIN/EWOULDBLOCK")
74 /* EWOULDBLOCK == EAGAIN skipped */
  /external/ltp/testcases/kernel/io/aio/aio02/
aio_tio.c 155 } while (res == -EAGAIN);

Completed in 943 milliseconds

1 2 3 4 5 6 7 8 91011>>