Searched refs:aio_cancel (Results 1 – 25 of 37) sorted by relevance
12
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | aio.h | 46 int aio_cancel(int, struct aiocb *); 58 #define aio_cancel64 aio_cancel
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | aio.h | 46 int aio_cancel(int, struct aiocb *); 58 #define aio_cancel64 aio_cancel
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | aio.h | 46 int aio_cancel(int, struct aiocb *); 58 #define aio_cancel64 aio_cancel
|
/third_party/musl/include/ |
D | aio.h | 46 int aio_cancel(int, struct aiocb *); 58 #define aio_cancel64 aio_cancel
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_cancel/ |
D | 9-1.c | 41 if (aio_cancel(-1, NULL) != -1) { in main()
|
D | 10-1.c | 40 if (aio_cancel(-1, NULL) != -1) { in main()
|
D | 2-2.c | 57 if (aio_cancel(fd, NULL) == -1) { in main()
|
D | coverage.txt | 1 this file defines the coverage for the aio_cancel() function testing.
|
D | 2-1.c | 75 switch (aio_cancel(fd, NULL)) { in main()
|
D | 1-1.c | 71 switch (aio_cancel(fd, &aiocb)) { in main()
|
D | 8-1.c | 83 if (aio_cancel(fd, &aiocb) != AIO_ALLDONE) { in main()
|
D | 4-1.c | 102 if (aio_cancel(fd, NULL) == -1) { in main()
|
D | 6-1.c | 99 gret = aio_cancel(fd, aiocb[i - 1]); in main()
|
D | 7-1.c | 104 gret = aio_cancel(fd, NULL); in main()
|
D | 5-1.c | 100 if (aio_cancel(fd, NULL) == -1) { in main()
|
D | 3-1.c | 142 if (aio_cancel(fd, NULL) == -1) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/aio_h/ |
D | 4-1.c | 11 static int (*dummy0) (int, struct aiocb*) = aio_cancel;
|
/third_party/musl/porting/liteos_a/user/src/aio/ |
D | aio.c | 359 int aio_cancel(int fd, struct aiocb *cb) in aio_cancel() function 401 if (aio_fd_cnt) aio_cancel(fd, 0); in __aio_close() 419 weak_alias(aio_cancel, aio_cancel64);
|
/third_party/musl/src/aio/ |
D | aio.c | 362 int aio_cancel(int fd, struct aiocb *cb) in aio_cancel() function 408 if (aio_fd_cnt) aio_cancel(fd, 0); in __aio_close() 426 weak_alias(aio_cancel, aio_cancel64);
|
/third_party/musl/porting/linux/user/src/aio/ |
D | aio.c | 356 int aio_cancel(int fd, struct aiocb *cb) in aio_cancel() function 401 if (aio_fd_cnt) aio_cancel(fd, 0); in __aio_close() 419 weak_alias(aio_cancel, aio_cancel64);
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | linux-musl.txt | 27 aio_cancel
|
D | linux-gnu.txt | 574 aio_cancel
|
/third_party/musl/libc-test/src/api/ |
D | aio.c | 33 {int(*p)(int,struct aiocb*) = aio_cancel;} in f()
|
/third_party/elfutils/tests/ |
D | lfs-symbols | 17 aio_cancel
|
/third_party/rust/crates/nix/src/sys/ |
D | aio.rs | 134 libc::aio_cancel(self.aiocb.0.aio_fildes, &mut self.aiocb.0) in cancel() 1013 match unsafe { libc::aio_cancel(fd, ptr::null_mut()) } { in aio_cancel_all()
|
12