/third_party/ltp/testcases/kernel/fs/proc/ |
H A D | proc01.c | 89 {"read", "/proc/acpi/event", EAGAIN}, 90 {"read", "/proc/kmsg", EAGAIN}, 91 {"read", "/proc/sal/cpe/event", EAGAIN}, 92 {"read", "/proc/sal/cmc/event", EAGAIN}, 93 {"read", "/proc/sal/init/event", EAGAIN}, 94 {"read", "/proc/sal/mca/event", EAGAIN}, 116 {"read", "/proc/self/net/rpc/use-gss-proxy", EAGAIN},
|
/third_party/libdrm/amdgpu/ |
H A D | amdgpu_asic_id.c | 50 return -EAGAIN; in parse_one_line() 66 r = -EAGAIN; in parse_one_line() 80 r = -EAGAIN; in parse_one_line() 145 if (r != -EAGAIN) in amdgpu_parse_asic_ids() 154 } else if (r && r != -EAGAIN) { in amdgpu_parse_asic_ids()
|
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
H A D | io_raw.c | 105 case EAGAIN: in SPDYF_raw_recv() 106 #if EAGAIN != EWOULDBLOCK in SPDYF_raw_recv() 134 case EAGAIN: in SPDYF_raw_send() 135 #if EAGAIN != EWOULDBLOCK in SPDYF_raw_send()
|
/third_party/ltp/testcases/kernel/io/aio/ |
H A D | aio01.c | 135 } while (TEST_RETURN == -EAGAIN); in main() 166 } while (TEST_RETURN == -EAGAIN); in main() 197 } while (TEST_RETURN == -EAGAIN); in main() 228 } while (TEST_RETURN == -EAGAIN); in main() 259 } while (TEST_RETURN == -EAGAIN); in main() 273 } while (TEST_RETURN == -EAGAIN); in main() 305 } while (TEST_RETURN == -EAGAIN); in main() 319 } while (TEST_RETURN == -EAGAIN); in main()
|
/third_party/ltp/testcases/kernel/syscalls/fcntl/ |
H A D | fcntl22.c | 24 * Verify that, fcntl() fails with -1 and sets errno to EAGAIN when 71 EAGAIN); in main() 73 if (TEST_ERRNO == EAGAIN) { in main() 76 "error EAGAIN errno:%d", in main() 79 tst_resm(TFAIL, "fcntl() fails, EAGAIN, " in main() 81 TEST_ERRNO, EAGAIN); in main()
|
/third_party/ffmpeg/libavformat/ |
H A D | rtpdec_vp8.c | 62 return AVERROR(EAGAIN); in vp8_broken_sequence() 88 return AVERROR(EAGAIN); in vp8_handle_packet() 153 return AVERROR(EAGAIN); in vp8_handle_packet() 214 return AVERROR(EAGAIN); in vp8_handle_packet() 260 return AVERROR(EAGAIN); in vp8_handle_packet()
|
H A D | rtpdec_mpegts.c | 65 return AVERROR(EAGAIN); in mpegts_handle_packet() 69 return AVERROR(EAGAIN); in mpegts_handle_packet() 80 * AVERROR(EAGAIN) for all errors */ in mpegts_handle_packet() 82 return AVERROR(EAGAIN); in mpegts_handle_packet()
|
H A D | rtpdec_ac3.c | 86 return AVERROR(EAGAIN); in ac3_handle_packet() 92 return AVERROR(EAGAIN); in ac3_handle_packet() 106 return AVERROR(EAGAIN); in ac3_handle_packet()
|
H A D | tls_libtls.c | 55 if (ret == AVERROR(EAGAIN)) in tls_read_callback() 66 if (ret == AVERROR(EAGAIN)) in tls_write_callback() 162 return AVERROR(EAGAIN); in ff_tls_read() 177 return AVERROR(EAGAIN); in ff_tls_write()
|
H A D | tls_gnutls.c | 80 return AVERROR(EAGAIN); in print_tls_error() 125 if (ret == AVERROR(EAGAIN)) { in gnutls_url_pull() 126 errno = EAGAIN; in gnutls_url_pull() 143 if (ret == AVERROR(EAGAIN)) { in gnutls_url_push() 144 errno = EAGAIN; in gnutls_url_push()
|
H A D | rtpdec_mpa_robust.c | 159 return AVERROR(EAGAIN); in mpa_robust_parse_packet() 167 return AVERROR(EAGAIN); in mpa_robust_parse_packet() 180 return AVERROR(EAGAIN); in mpa_robust_parse_packet()
|
H A D | rtpdec_svq3.c | 75 return AVERROR(EAGAIN); in svq3_parse_packet() 101 return AVERROR(EAGAIN); in svq3_parse_packet()
|
/third_party/ltp/testcases/kernel/syscalls/ipc/semop/ |
H A D | semop02.c | 11 * EAGAIN - semop = 0 for non-zero semaphore and IPC_NOWAIT passed in flags 12 * EAGAIN - semop = -1 for zero semaphore and IPC_NOWAIT passed in flags 13 * EAGAIN - semop = 0 and timeout happens 14 * EAGAIN - semop = -1 and timeout happens 62 {0, &valid_sem_id, NULL, &sem_op_zero, 2, 2, IPC_NOWAIT, 1, 1, &valid_to, EAGAIN}, 63 {0, &valid_sem_id, NULL, &sem_op_negative, 2, 2, IPC_NOWAIT, 1, 0, &valid_to, EAGAIN}, 64 {1, &valid_sem_id, NULL, &sem_op_zero, 0, 0, SEM_UNDO, 1, 1, &valid_to, EAGAIN}, 65 {1, &valid_sem_id, NULL, &sem_op_negative, 0, 0, SEM_UNDO, 1, 0, &valid_to, EAGAIN},
|
/third_party/rust/crates/nix/src/ |
H A D | errno.rs | 158 EAGAIN => "Try again", 1135 EAGAIN = libc::EAGAIN, 1261 pub const EWOULDBLOCK: Errno = Errno::EAGAIN; 1280 libc::EAGAIN => EAGAIN, 1449 EAGAIN = libc::EAGAIN, 1525 pub const EWOULDBLOCK: Errno = Errno::EAGAIN; 1567 libc::EAGAIN [all...] |
/third_party/ltp/testcases/kernel/syscalls/sendfile/ |
H A D | sendfile07.c | 11 * Testcase to test that sendfile(2) system call returns EAGAIN 37 if (TST_ERR == EAGAIN) in setup() 44 tst_brk(TBROK, "Failed to get EAGAIN after %i bytes", in setup() 59 TST_EXP_FAIL(sendfile(out_fd, in_fd, NULL, 1), EAGAIN, in run()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_create/speculative/ |
H A D | 5-1.c | 16 * [EAGAIN] - the system lacked the necessary resources to create another 23 * TESTING [EAGAIN] 55 if (rc == EAGAIN) { in main() 59 printf("Expected EAGAIN on exceeding the limit, got: %d\n", rc); in main() 64 if (rc == EAGAIN) { in main() 65 printf("EAGAIN returned before the key limit was exceeded\n"); in main()
|
/third_party/musl/src/aio/ |
H A D | lio_listio.c | 83 errno = EAGAIN; in lio_listio() 105 errno = EAGAIN; in lio_listio() 136 errno = EAGAIN; in lio_listio()
|
/third_party/musl/porting/liteos_a/user/src/aio/ |
H A D | lio_listio.c | 84 errno = EAGAIN; in lio_listio() 106 errno = EAGAIN; in lio_listio() 137 errno = EAGAIN; in lio_listio()
|
/third_party/libevdev/test/ |
H A D | test-libevdev-events.c | 30 ck_assert_int_eq(rc, -EAGAIN); in START_TEST() 186 ck_assert_int_eq(rc, -EAGAIN); in START_TEST() 196 ck_assert_int_eq(rc, -EAGAIN); in START_TEST() 220 ck_assert_int_eq(rc, -EAGAIN); in START_TEST() 234 ck_assert_int_eq(rc, -EAGAIN); in START_TEST() 267 while ((rc = libevdev_next_event(dev, LIBEVDEV_READ_FLAG_NORMAL, &ev)) != -EAGAIN) in START_TEST() 336 ck_assert_int_eq(rc, -EAGAIN); in START_TEST() 392 ck_assert_int_eq(rc, -EAGAIN); in START_TEST() 476 ck_assert_int_eq(rc, -EAGAIN); in START_TEST() 523 } while (rc != -EAGAIN); in START_TEST() [all...] |
/third_party/glfw/src/ |
H A D | posix_poll.c | 68 else if (result == -1 && error != EINTR && error != EAGAIN) in _glfwPollPOSIX() 78 else if (result == -1 && errno != EINTR && errno != EAGAIN) in _glfwPollPOSIX()
|
/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bss_sock.c | 263 # ifdef EAGAIN in BIO_sock_non_fatal_error() 264 # if EWOULDBLOCK != EAGAIN in BIO_sock_non_fatal_error() 265 case EAGAIN: in BIO_sock_non_fatal_error()
|
H A D | bss_fd.c | 260 # ifdef EAGAIN in BIO_fd_non_fatal_error() 261 # if EWOULDBLOCK != EAGAIN in BIO_fd_non_fatal_error() 262 case EAGAIN: in BIO_fd_non_fatal_error()
|
/third_party/openssl/crypto/bio/ |
H A D | bss_sock.c | 263 # ifdef EAGAIN in BIO_sock_non_fatal_error() 264 # if EWOULDBLOCK != EAGAIN in BIO_sock_non_fatal_error() 265 case EAGAIN: in BIO_sock_non_fatal_error()
|
H A D | bss_fd.c | 260 # ifdef EAGAIN in BIO_fd_non_fatal_error() 261 # if EWOULDBLOCK != EAGAIN in BIO_fd_non_fatal_error() 262 case EAGAIN: in BIO_fd_non_fatal_error()
|
/third_party/libdrm/ |
H A D | libsync.h | 81 } while (ret == -1 && (errno == EINTR || errno == EAGAIN)); in sync_wait() 96 } while (ret == -1 && (errno == EINTR || errno == EAGAIN)); in sync_merge()
|