/third_party/musl/porting/uniproton/kernel/include/ |
H A D | aio.h | 47 int aio_suspend(const struct aiocb *const [], int, const struct timespec *); 59 #define aio_suspend64 aio_suspend 66 __REDIR(aio_suspend, __aio_suspend_time64);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | aio.h | 47 int aio_suspend(const struct aiocb *const [], int, const struct timespec *); 59 #define aio_suspend64 aio_suspend 66 __REDIR(aio_suspend, __aio_suspend_time64);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | aio.h | 47 int aio_suspend(const struct aiocb *const [], int, const struct timespec *); 59 #define aio_suspend64 aio_suspend 66 __REDIR(aio_suspend, __aio_suspend_time64);
|
/third_party/musl/include/ |
H A D | aio.h | 47 int aio_suspend(const struct aiocb *const [], int, const struct timespec *); 59 #define aio_suspend64 aio_suspend 66 __REDIR(aio_suspend, __aio_suspend_time64);
|
/third_party/musl/compat/time32/ |
H A D | aio_suspend_time32.c | 7 return aio_suspend(cbs, cnt, ts32 ? (&(struct timespec){ in __aio_suspend_time32() 11 weak_alias(aio_suspend, aio_suspend64);
|
/third_party/musl/src/aio/ |
H A D | aio_suspend.c | 9 int aio_suspend(const struct aiocb *const cbs[], int cnt, const struct timespec *ts) in aio_suspend() function 80 weak_alias(aio_suspend, aio_suspend64);
|
H A D | lio_listio.c | 36 if (aio_suspend((void *)cbs, cnt, 0)) in lio_wait()
|
/third_party/musl/porting/liteos_a/user/src/aio/ |
H A D | aio_suspend.c | 9 int aio_suspend(const struct aiocb *const cbs[], int cnt, const struct timespec *ts) in aio_suspend() function 80 weak_alias(aio_suspend, aio_suspend64);
|
H A D | lio_listio.c | 36 if (aio_suspend((void *)cbs, cnt, 0)) in lio_wait()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/aio_h/ |
H A D | 4-1.c | 17 const struct timespec *) = aio_suspend;
|
/third_party/musl/libc-test/src/api/ |
H A D | aio.c | 38 {int(*p)(const struct aiocb*const[],int,const struct timespec*) = aio_suspend;} in f()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_suspend/ |
H A D | 3-1.c | 18 * - call aio_suspend with this list 36 #define TNAME "aio_suspend/2-1.c" 85 if (aio_suspend(list, NENT, NULL) != 0) { in main() 86 printf(TNAME " Error at aio_suspend(): %s\n", strerror(errno)); in main()
|
H A D | 4-1.c | 12 * On a timeout exit, aio_suspend shall return with an error. 38 #define TNAME "aio_suspend/4-1.c" 161 ret = aio_suspend((const struct aiocb **)plist, 2, &ts); in main() 171 /* timed out aio_suspend should return -1 and set errno to EAGAIN */ in main() 173 printf(TNAME " aio_suspend() should return -1\n"); in main() 179 printf(TNAME " aio_suspend() should set errno to EAGAIN:" in main()
|
H A D | 9-1.c | 14 * aio_suspend() shall fail if: 137 ret = aio_suspend((const struct aiocb **)plist, 2, &ts); in do_test() 150 /* timed out aio_suspend should return -1 and set errno to EAGAIN */ in do_test() 152 printf("aio_suspend() should return -1\n"); in do_test() 157 printf("aio_suspend() should set errno to EAGAIN: %d (%s)\n", in do_test()
|
H A D | 1-1.c | 12 * The aio_suspend() function shall suspend the calling thread until at 48 #define TNAME "aio_suspend/1-1.c" 163 ret = aio_suspend((const struct aiocb **)plist, 2, NULL); in main() 165 printf(TNAME " Error at aio_suspend() %d: %s\n", in main()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | aio.rs | 13 //! [`aio_suspend`](fn.aio_suspend.html) function, or via polling. Some 282 /// is an alternative to `aio_suspend`, used by most of the other examples. 1025 /// If `timeout` is `None`, `aio_suspend` will block indefinitely. 1029 /// Use `aio_suspend` to block until an aio operation completes. 1044 /// aio_suspend(&[&*aiocb], None).expect("aio_suspend failed"); 1049 /// [`aio_suspend`](https://pubs.opengroup.org/onlinepubs/9699919799/functions/aio_suspend.html) 1050 pub fn aio_suspend( in aio_suspend() functions [all...] |
/third_party/rust/crates/nix/test/sys/ |
H A D | test_aio.rs | 575 // On Cirrus, aio_suspend is failing with EINVAL 610 let r = aio_suspend(&cbbuf[..], Some(timeout)); in test_aio_suspend() 613 Err(e) => panic!("aio_suspend returned {:?}", e), in test_aio_suspend()
|
/third_party/ltp/lib/ |
H A D | tlibio.c | 142 "async i/o using recall/aio_suspend"}, 179 "use recall(2)/aio_suspend(3) to wait for i/o to complete"}, 503 * wait method is: recall(2) for writea(2) and listio(2); aio_suspend(3) for 1078 * wait method is: recall(2) for reada(2) and listio(2); aio_suspend(3) for 1767 * or aio_suspend(3), as appropriate. 1801 * not have any wait method bits set (default), use recall/aio_suspend. 1817 ("DEBUG %s/%d: wait method : aio_suspend, sigev_notify=%s\n", 1830 ret = aio_suspend(aioary, 1, NULL); 1835 ("DEBUG %s/%d: aio_suspend received EINTR, sigev_notify=SIGEV_SIGNAL -- ok\n", 1840 "%s/%d aio_suspend receive [all...] |
/third_party/ltp/testcases/kernel/fs/doio/ |
H A D | doio.c | 4814 r = aio_suspend(aioary, 1, NULL); in aio_wait() 4817 "aio_suspend failed: %s (%d)\n", in aio_wait() 4842 r = aio_suspend(aioary, 1, NULL); in aio_wait() 4844 doio_fprintf(stderr, "aio_suspend failed: %s (%d)\n", in aio_wait()
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/ |
H A D | mod.rs | 1678 pub fn aio_suspend( in aio_suspend() functions
|
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/ |
H A D | mod.rs | 2437 pub fn aio_suspend( in aio_suspend() functions
|
/third_party/rust/crates/libc/src/unix/nto/ |
H A D | mod.rs | 3157 pub fn aio_suspend( in aio_suspend() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 3741 pub fn aio_suspend( in aio_suspend() functions
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/ |
H A D | mod.rs | 3949 pub fn aio_suspend( in aio_suspend() functions
|
/third_party/rust/crates/libc/src/unix/bsd/apple/ |
H A D | mod.rs | 5085 link_name = "aio_suspend$UNIX2003" 5087 pub fn aio_suspend( in aio_suspend() functions
|