/third_party/musl/porting/liteos_a/user/src/aio/ |
D | aio_suspend.c | 26 if (aio_error(cbs[i]) != EINPROGRESS) return 0; in aio_suspend() 42 if (cbs[i] && aio_error(cbs[i]) != EINPROGRESS) in aio_suspend() 51 expect = EINPROGRESS | 0x80000000; in aio_suspend() 52 a_cas(pfut, EINPROGRESS, expect); in aio_suspend() 61 if (cbs[i] && aio_error(cbs[i]) != EINPROGRESS) in aio_suspend()
|
/third_party/musl/src/aio/ |
D | aio_suspend.c | 24 if (aio_error(cbs[i]) != EINPROGRESS) return 0; in aio_suspend() 40 if (cbs[i] && aio_error(cbs[i]) != EINPROGRESS) in aio_suspend() 49 expect = EINPROGRESS | 0x80000000; in aio_suspend() 50 a_cas(pfut, EINPROGRESS, expect); in aio_suspend() 59 if (cbs[i] && aio_error(cbs[i]) != EINPROGRESS) in aio_suspend()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_fsync/ |
D | 5-1.c | 69 if (aio_error(&aiocb_fsync) == EINPROGRESS) in main() 78 } while (err == EINPROGRESS); in main()
|
D | 2-1.c | 71 } while (ret == EINPROGRESS); in main() 83 if (ret == EINPROGRESS) { in main()
|
D | 3-1.c | 70 } while (ret == EINPROGRESS); in main() 82 if (ret == EINPROGRESS) { in main()
|
D | 8-1.c | 62 } while (ret == EINPROGRESS); in main() 81 } while (ret == EINPROGRESS); in main()
|
D | 8-3.c | 62 } while (ret == EINPROGRESS); in main() 81 } while (ret == EINPROGRESS); in main()
|
D | 8-4.c | 62 } while (ret == EINPROGRESS); in main() 81 } while (ret == EINPROGRESS); in main()
|
D | 9-1.c | 62 } while (ret == EINPROGRESS); in main() 80 } while (ret == EINPROGRESS); in main()
|
D | 8-2.c | 62 } while (ret == EINPROGRESS); in main() 81 } while (ret == EINPROGRESS); in main()
|
/third_party/rust/crates/nix/src/ |
D | errno.rs | 191 EINPROGRESS => "Operation now in progress", in desc() 1237 EINPROGRESS = libc::EINPROGRESS, enumerator 1382 libc::EINPROGRESS => EINPROGRESS, in from_i32() 1450 EINPROGRESS = libc::EINPROGRESS, enumerator 1568 libc::EINPROGRESS => EINPROGRESS, in from_i32() 1686 EINPROGRESS = libc::EINPROGRESS, enumerator 1795 libc::EINPROGRESS => EINPROGRESS, in from_i32() 1903 EINPROGRESS = libc::EINPROGRESS, enumerator 2012 libc::EINPROGRESS => EINPROGRESS, in from_i32() 2118 EINPROGRESS = libc::EINPROGRESS, enumerator [all …]
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_return/ |
D | 3-1.c | 81 } while (retval == EINPROGRESS); in main() 107 } while (retval == EINPROGRESS); in main()
|
/third_party/skia/third_party/externals/microhttpd/src/include/ |
D | w32functions.h | 47 #ifndef EINPROGRESS 48 #define EINPROGRESS (MHDW32ERRBASE+2) macro
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_cancel/ |
D | 5-1.c | 119 } else if ((ret == EINPROGRESS) || (ret == 0)) { in main() 120 if (ret == EINPROGRESS) in main()
|
/third_party/pulseaudio/src/pulsecore/ |
D | winerrno.h | 10 #undef EINPROGRESS 11 #define EINPROGRESS WSAEINPROGRESS macro
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/ |
D | 3-2.c | 51 EINPROGRESS, "EINPROGRESS", EINPROGRESS}, {
|
/third_party/openssl/crypto/rand/ |
D | rand_egd.c | 150 # ifdef EINPROGRESS in RAND_query_egd_bytes() 151 case EINPROGRESS: in RAND_query_egd_bytes()
|
/third_party/node/deps/openssl/openssl/crypto/rand/ |
D | rand_egd.c | 150 # ifdef EINPROGRESS in RAND_query_egd_bytes() 151 case EINPROGRESS: in RAND_query_egd_bytes()
|
/third_party/ffmpeg/libavformat/ |
D | network.h | 50 #ifndef EINPROGRESS 51 #define EINPROGRESS WSAEINPROGRESS macro
|
/third_party/rust/crates/nix/test/sys/ |
D | test_aio.rs | 37 if err != Err(Errno::EINPROGRESS) { 340 assert!(err == Ok(()) || err == Err(Errno::EINPROGRESS)); in cancel() 562 assert!(err == Ok(()) || err == Err(Errno::EINPROGRESS)); in test_aio_cancel_all() 617 if rcb.as_mut().error() != Err(Errno::EINPROGRESS) in test_aio_suspend() 618 && wcb.as_mut().error() != Err(Errno::EINPROGRESS) in test_aio_suspend()
|
/third_party/openssl/crypto/bio/ |
D | bss_fd.c | 270 # ifdef EINPROGRESS in BIO_fd_non_fatal_error() 271 case EINPROGRESS: in BIO_fd_non_fatal_error()
|
D | bss_sock.c | 273 # ifdef EINPROGRESS in BIO_sock_non_fatal_error() 274 case EINPROGRESS: in BIO_sock_non_fatal_error()
|
/third_party/node/deps/openssl/openssl/crypto/bio/ |
D | bss_fd.c | 270 # ifdef EINPROGRESS in BIO_fd_non_fatal_error() 271 case EINPROGRESS: in BIO_fd_non_fatal_error()
|
D | bss_sock.c | 273 # ifdef EINPROGRESS in BIO_sock_non_fatal_error() 274 case EINPROGRESS: in BIO_sock_non_fatal_error()
|
/third_party/skia/third_party/externals/microhttpd/src/platform/ |
D | w32functions.c | 50 case WSAEINPROGRESS: return EINPROGRESS; in MHD_W32_errno_from_winsock_() 116 case EINPROGRESS: in MHD_W32_strerror_() 420 case EINPROGRESS: in MHD_W32_set_last_winsock_error_()
|