| /third_party/musl/porting/uniproton/kernel/include/ |
| H A D | aio.h | 42 int aio_read(struct aiocb *); 54 #define aio_read64 aio_read
|
| /third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
| H A D | aio.h | 42 int aio_read(struct aiocb *); 54 #define aio_read64 aio_read
|
| /third_party/musl/porting/liteos_m/kernel/include/ |
| H A D | aio.h | 42 int aio_read(struct aiocb *); 54 #define aio_read64 aio_read
|
| /third_party/musl/include/ |
| H A D | aio.h | 42 int aio_read(struct aiocb *); 54 #define aio_read64 aio_read
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/aio_h/ |
| H A D | 4-1.c | 14 static int (*dummy3) (struct aiocb*) = aio_read;
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_read/ |
| H A D | 8-1.c | 12 * The aio_read() function shall return the value -1 and set errno to 19 * - call aio_read 20 * - check aio_read return value 35 #define TNAME "aio_read/8-1.c" 50 if (aio_read(&aiocb) != -1) { in main() 51 printf(TNAME " aio_read() should fail!\n"); in main()
|
| H A D | 10-1.c | 12 * aio_read() shall fail with [EBADF] or the error status of the operation 19 * - call aio_read with this aiocb 36 #define TNAME "aio_read/10-1.c" 60 if (aio_read(&aiocb) != 0) { in main() 61 printf(TNAME " bad aio_read return value()\n"); in main()
|
| H A D | 7-1.c | 12 * The aio_read() function shall return the value zero if operation is 18 * - read file using aio_read 19 * - check aio_read return value 36 #define TNAME "aio_read/7-1.c" 67 if (aio_read(&aiocb) == -1) { in main() 68 printf(TNAME " Error at aio_read(): %s\n", strerror(errno)); in main()
|
| H A D | 11-2.c | 12 * aio_read() shall fail with [EINVAL] or the error status of the operation 21 * - call aio_read with this aiocb 37 #define TNAME "aio_read/11-2.c" 66 if (aio_read(&aiocb) != -1) { in main() 67 printf(TNAME " bad aio_read return value()\n"); in main()
|
| H A D | 5-1.c | 18 * - call aio_read with this aiocb 36 #define TNAME "aio_read/5-1.c" 77 if (aio_read(&aiocb) == -1) { in main() 78 printf(TNAME " Error at aio_read(): %s\n", strerror(errno)); in main()
|
| H A D | 4-1.c | 17 * - read file using aio_read at a given offset 35 #define TNAME "aio_read/4-1.c" 76 if (aio_read(&aiocb) == -1) { in main() 77 printf(TNAME " Error at aio_read(): %s\n", strerror(errno)); in main()
|
| H A D | 9-1.c | 12 * aio_read() shall fail with [EAGAIN] if: 38 #define TNAME "aio_read/9-1.c" 81 ret = aio_read(&aiocbs[i]); in main()
|
| H A D | 3-2.c | 17 * - read file using aio_read 35 #define TNAME "aio_read/3-2.c" 72 if (aio_read(&aiocb) == -1) { in main() 73 printf(TNAME " Error at aio_read(): %s\n", strerror(errno)); in main()
|
| H A D | 3-1.c | 17 * - read file using aio_read 35 #define TNAME "aio_read/3-1.c" 70 if (aio_read(&aiocb) == -1) { in main() 71 printf(TNAME " Error at aio_read(): %s\n", strerror(errno)); in main()
|
| H A D | 1-1.c | 12 * aio_read() shall read aio_nbytes from the files aio_fildes into the 18 * - read 256 bytes using aio_read 34 #define TNAME "aio_read/1-1.c" 79 if (aio_read(&aiocb) == -1) { in main() 80 printf(TNAME " Error at aio_read(): %s\n", strerror(errno)); in main()
|
| H A D | 11-1.c | 12 * aio_read() shall fail with [EINVAL] or the error status of the operation 21 * - call aio_read with this aiocb 38 #define TNAME "aio_read/11-1.c" 72 if (aio_read(&aiocb) != -1) { in main() 83 printf(TNAME " bad aio_read return value\n"); in main()
|
| /third_party/musl/libc-test/src/api/ |
| H A D | aio.c | 36 {int(*p)(struct aiocb*) = aio_read;} in f()
|
| /third_party/musl/src/aio/ |
| H A D | lio_listio.c | 95 ret = aio_read(cbs[i]); in lio_listio()
|
| H A D | aio.c | 333 int aio_read(struct aiocb *cb) in aio_read() function 450 weak_alias(aio_read, aio_read64);
|
| /third_party/musl/porting/liteos_a/user/src/aio/ |
| H A D | lio_listio.c | 96 ret = aio_read(cbs[i]); in lio_listio()
|
| H A D | aio.c | 324 int aio_read(struct aiocb *cb) in aio_read() function 422 weak_alias(aio_read, aio_read64);
|
| /third_party/musl/porting/linux/user/src/aio/ |
| H A D | aio.c | 326 int aio_read(struct aiocb *cb) in aio_read() function 422 weak_alias(aio_read, aio_read64);
|
| /third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
| H A D | kernel.h | 472 unused_func_t aio_read; member
|
| /third_party/rust/crates/nix/test/sys/ |
| H A D | test_aio.rs | 110 mod aio_read { modules 158 /// `libc::aio_read` returns an error
|
| /third_party/ltp/lib/ |
| H A D | tlibio.c | 172 {"async", LIO_IO_ASYNC, "async i/o (reada/writea/aio_read/aio_write)"}, 1071 * aio_read(3), readv(2), pread(2), 1079 * aio_read(3) and lio_listio(3). 1370 "aio_read(fildes=%d, buf, nbytes=%d, signo=%d)", fd, in lio_read_buffer() 1372 io_type = "aio_read"; in lio_read_buffer() 1381 if ((ret = aio_read(&aiocbp)) == -1) { in lio_read_buffer() 1383 "%s/%d aio_read(fildes=%d, buf, nbytes=%d, signo=%d) ret:-1, errno=%d %s", in lio_read_buffer()
|