HomeSort by relevance Sort by last modified time
    Searched refs:EAGAIN (Results 151 - 175 of 584) sorted by null

1 2 3 4 5 67 8 91011>>

  /bionic/tests/
sys_sem_test.cpp 65 ASSERT_EQ(EAGAIN, errno);
  /device/generic/goldfish/network/netmgr/
monitor.cpp 60 if (errno == EAGAIN || errno == EWOULDBLOCK) {
  /device/linaro/bootloader/edk2/StdLib/Include/
errno.h 91 #define EAGAIN __EAGAIN /* 35 Resource temporarily unavailable */
  /external/e2fsprogs/misc/
uuidd.c 100 if ((errno == EAGAIN || errno == EINTR || ret == 0) &&
122 if ((errno == EAGAIN) || (errno == EINTR))
261 if ((errno == EAGAIN) || (errno == EINTR))
344 if ((errno == EAGAIN) || (errno == EINTR))
logsave.c 55 * partial write, or an EAGAIN/EINTR error.
65 if ((errno == EAGAIN) || (errno == EINTR))
236 ((c < 0) && ((errno == EAGAIN) || (errno == EINTR)))) {
  /external/kmod/testsuite/
test-testsuite.c 100 if (r == -EAGAIN)
  /external/ltp/testcases/kernel/containers/sysvipc/
sem_comm.c 127 if (errno == EAGAIN) {
  /external/ltp/testcases/kernel/syscalls/eventfd/
eventfd01.c 92 if (errno != EAGAIN) {
150 * Test whether read returns with error EAGAIN when counter is at 0.
165 if (errno == EAGAIN)
166 tst_resm(TPASS, "read failed with EAGAIN as expected");
168 tst_resm(TFAIL | TERRNO, "read failed (wanted EAGAIN)");
193 * Test whether write returns with error EAGAIN when counter is at
210 if (errno == EAGAIN)
211 tst_resm(TPASS, "write failed with EAGAIN as expected");
213 tst_resm(TFAIL, "write failed (wanted EAGAIN)");
460 if (ret == -1 && errno != EAGAIN) {
    [all...]
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl33.c 125 if (TST_ERR == EAGAIN) {
  /external/python/cpython2/Modules/_multiprocessing/
semaphore.c 229 else if (errno != EAGAIN)
328 if (errno == EAGAIN || errno == ETIMEDOUT)
363 if (errno != EAGAIN) {
532 if (errno == EAGAIN)
  /external/tensorflow/tensorflow/core/platform/posix/
error.cc 120 case EAGAIN: // Resource temporarily unavailable
  /external/u-boot/drivers/serial/
sandbox.c 135 return -EAGAIN; /* buffer empty */
  /external/u-boot/drivers/tpm/
tpm-uclass.c 115 } else if (ret != -EAGAIN) {
  /external/u-boot/fs/ubifs/
budget.c 68 * zero if a free LEB has been produced, %-EAGAIN if commit is required, and a
120 * So this function tries to do the above. Returns %-EAGAIN if some free space
141 return -EAGAIN;
149 return -EAGAIN;
151 if (err != -EAGAIN && err != -ENOSPC)
492 if (err == -EAGAIN) {
  /external/dnsmasq/src/
log.c 160 if (errno == EAGAIN) return; /* syslogd busy, go again when select() or poll() says so */
191 errno == EISCONN || errno == EINTR || errno == EAGAIN) {
  /external/libcxx/test/std/diagnostics/errno/
cerrno.pass.cpp 39 #ifndef EAGAIN
40 #error EAGAIN not defined
  /external/linux-kselftest/tools/testing/selftests/net/
udpgso_bench_rx.c 124 if (ret == -1 && errno == EAGAIN)
177 if (ret == -1 && errno == EAGAIN)
  /external/ltp/testcases/kernel/controllers/freezer/
vfork.c 274 if ((errno == EAGAIN) || (errno == EINTR))
293 if ((errno == EAGAIN) || (errno == EINTR))
  /external/ltp/testcases/kernel/syscalls/fanotify/
fanotify09.c 182 if (errno == EAGAIN) {
229 if (errno != EAGAIN) {
fanotify10.c 255 if (errno == EAGAIN) {
296 } else if (errno == EAGAIN) {
  /external/ltp/testcases/kernel/syscalls/signalfd/
signalfd01.c 154 if (errno == EAGAIN) {
242 if (errno == EAGAIN) {
  /external/ltp/utils/sctp/func_tests/
test_1_to_1_nonblock.c 8 * TEST1: Non blocking accept return EAGAIN if connect is not called
11 * TEST4: Non blocking recvmsg should return EAGAIN
122 /* TEST1: accept should return EAGAIN instead blocking. */
124 if (error != -1 || errno != EAGAIN)
128 tst_resm(TPASS, "non-blocking accept() - EAGAIN");
189 /* TEST4: recvmsg() should return EAGAIN instead blocking */
191 if ( error != -1 || errno != EAGAIN)
195 tst_resm(TPASS, "non-blocking recvmsg() - EAGAIN");
  /external/skia/experimental/Networking/
SkSockets.cpp 111 if (errno == EWOULDBLOCK || errno == EAGAIN) {
208 else if (errno == EWOULDBLOCK || errno == EAGAIN) {
  /external/skqp/experimental/Networking/
SkSockets.cpp 111 if (errno == EWOULDBLOCK || errno == EAGAIN) {
208 else if (errno == EWOULDBLOCK || errno == EAGAIN) {
  /external/strace/tests/
errno2name.c 57 #ifdef EAGAIN
58 CASE(EAGAIN);

Completed in 877 milliseconds

1 2 3 4 5 67 8 91011>>