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

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_create/speculative/
5-1.c 16 * [EAGAIN] - the system lacked the necessary resources to create another
23 * TESTING [EAGAIN]
55 if (rc == EAGAIN) {
59 printf("Expected EAGAIN on exceeding the limit, got: %d\n", rc);
64 if (rc == EAGAIN) {
65 printf("EAGAIN returned before the key limit was exceeded\n");
  /bionic/libc/kernel/uapi/asm-generic/
errno-base.h 31 #define EAGAIN 11
  /external/curl/src/
tool_cb_rea.c 44 if(errno == EAGAIN) {
  /external/kernel-headers/original/uapi/asm-generic/
errno-base.h 15 #define EAGAIN 11 /* Try again */
  /external/libmicrohttpd/src/microspdy/
io_raw.c 105 case EAGAIN:
106 #if EAGAIN != EWOULDBLOCK
134 case EAGAIN:
135 #if EAGAIN != EWOULDBLOCK
  /external/ltp/testcases/kernel/controllers/pids/
pids_task1.c 23 * -> 2 if fork fails with EAGAIN,
53 if (newpid == -1 && errno == EAGAIN)
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_trylock/
3-1.c 43 } else if (rc == EAGAIN) {
  /external/syslinux/com32/lib/
fread.c 18 if (errno == EINTR || errno == EAGAIN)
fwrite.c 18 if (errno == EINTR || errno == EAGAIN)
  /external/syslinux/dos/
errno.h 14 #define EAGAIN 11 /* Try again */
  /external/toybox/toys/other/
flock.c 36 if ((op & LOCK_NB) && errno == EAGAIN) toys.exitval = 1;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
errno-base.h 14 #define EAGAIN 11 /* Try again */
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl22.c 24 * Verify that, fcntl() fails with -1 and sets errno to EAGAIN when
71 EAGAIN);
73 if (TEST_ERRNO == EAGAIN) {
76 "error EAGAIN errno:%d",
79 tst_resm(TFAIL, "fcntl() fails, EAGAIN, "
81 TEST_ERRNO, EAGAIN);
  /external/libcups/cups/
backchannel.c 71 while (status < 0 && errno != EINTR && errno != EAGAIN);
133 while (status < 0 && errno != EINTR && errno != EAGAIN);
154 if (errno != EINTR && errno != EAGAIN)
  /external/ltp/testcases/kernel/syscalls/sendfile/
sendfile07.c 26 * Testcase to test that sendfile(2) system call returns EAGAIN
32 * 3. Write much datum to out_fd till write() returns EAGAIN.
33 * 4. Call sendfile with out_fd, and expect EAGAIN.
96 if (TEST_ERRNO != EAGAIN) {
99 EAGAIN, TEST_ERRNO);
158 if (errno == EAGAIN) {
170 "fail to fill out_fd, write %d bytes but EAGAIN it not returned.",
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_destroy/
1-1.c 59 } else if ((ret != 0) && ((ret == EPERM) || (ret == EAGAIN))) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_init/
3-1.c 43 case EAGAIN:
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_init/
4-1.c 42 } else if (rc == EAGAIN) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_lock/
2-1.c 40 } else if (rc == EAGAIN) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_unlock/
3-1.c 47 } else if (rc == EAGAIN) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_wait/
5-1.c 10 * errno return EAGAIN: The semaphore can't be immediately locked by
41 if ((sem_trywait(mysemp) == -1) && (errno == EAGAIN)) {
47 puts("TEST FAILED: ERROR IS NOT EAGAIN");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_create/speculative/
15-1.c 8 * Test that timer_create() sets errno to EAGAIN if the system doesn't
42 if (EAGAIN == errno) {
46 printf("errno != EAGAIN\n");
  /external/ppp/pppd/plugins/radius/
lock.c 29 if ((res == -1) && (errno == EAGAIN))
  /hardware/interfaces/bluetooth/1.0/default/
hci_protocol.cc 38 if (errno == EAGAIN) continue;
  /prebuilts/go/darwin-x86/src/crypto/rand/
eagain.go 18 // unixIsEAGAIN reports whether err is a syscall.EAGAIN wrapped in a PathError.
22 if errno, ok := pe.Err.(syscall.Errno); ok && errno == syscall.EAGAIN {

Completed in 2449 milliseconds

1 2 3 4 5 6 7 8 91011>>