/third_party/musl/porting/uniproton/kernel/include/ |
H A D | aio.h | 50 int lio_listio(int, struct aiocb *__restrict const *__restrict, int, struct sigevent *__restrict); 61 #define lio_listio64 lio_listio
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | aio.h | 50 int lio_listio(int, struct aiocb *__restrict const *__restrict, int, struct sigevent *__restrict); 61 #define lio_listio64 lio_listio
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | aio.h | 50 int lio_listio(int, struct aiocb *__restrict const *__restrict, int, struct sigevent *__restrict); 61 #define lio_listio64 lio_listio
|
/third_party/musl/include/ |
H A D | aio.h | 50 int lio_listio(int, struct aiocb *__restrict const *__restrict, int, struct sigevent *__restrict); 61 #define lio_listio64 lio_listio
|
/third_party/musl/src/aio/ |
H A D | lio_listio.c | 70 int lio_listio(int mode, struct aiocb *restrict const *restrict cbs, int cnt, struct sigevent *restrict sev) in lio_listio() function 145 weak_alias(lio_listio, lio_listio64);
|
/third_party/musl/porting/liteos_a/user/src/aio/ |
H A D | lio_listio.c | 70 int lio_listio(int mode, struct aiocb *restrict const *restrict cbs, int cnt, struct sigevent *restrict sev) in lio_listio() function 146 weak_alias(lio_listio, lio_listio64);
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/lio_listio/ |
H A D | 5-1.c | 18 * - submit a list using valid opcodes to lio_listio 20 * - Submit a list with invalid opcodes to lio_listio 21 * - Check that lio_listio returns an error 41 #define TNAME "lio_listio/5-1.c" 90 ret = lio_listio(LIO_WAIT, aiocbs, NUM_AIOCBS, NULL); in main() 93 printf(TNAME " lio_listio() does not accept valid opcodes\n"); in main() 123 if (lio_listio(LIO_WAIT, aiocbs, 1, NULL) != -1) { in main() 124 printf(TNAME " lio_listio() accepts invalid opcode\n"); in main() 134 printf(TNAME " lio_listio() sould set errno to EIO %d\n", in main()
|
H A D | 18-1.c | 12 * lio_listio() shall fail if: 19 * - submit a list of requests to lio_listio usign incorrect mode 36 #define TNAME "lio_listio/18-1.c" 83 ret = lio_listio(-1, aiocbs, NUM_AIOCBS, NULL); in main() 87 " Error lio_listio() should have returned -1: %d\n", in main() 98 " Error lio_listio() should have set errno to EINVAL: %d (%s)\n", in main()
|
H A D | 8-1.c | 18 * - submit read request to lio_listio 36 #define TNAME "lio_listio/8-1.c" 81 if (lio_listio(LIO_WAIT, list, 1, NULL) == -1) { in main() 82 printf(TNAME " Error at lio_listio(): %s\n", strerror(errno)); in main()
|
H A D | 9-1.c | 18 * - write data using lio_listio 37 #define TNAME "lio_listio/9-1.c" 76 if (lio_listio(LIO_WAIT, list, 1, NULL) == -1) { in main() 77 printf(TNAME " Error at lio_listio(): %s\n", strerror(errno)); in main()
|
H A D | 10-1.c | 12 * if mode is LIO_NOWAIT, lio_listio() shall return the value zero if 18 * - submit a list of writes to lio_listio in LIO_NOWAIT mode 19 * - check that lio_listio returns 0 and operations complete successfully 36 #define TNAME "lio_listio/10-1.c" 130 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event); in main() 133 printf(TNAME " Error at lio_listio() %d: %s\n", errno, in main()
|
H A D | 1-1.c | 12 * If mode is LIO_WAIT, lio_listio() shall wait until all I/O is 18 * - submit a list of writes to lio_listio in LIO_WAIT mode 37 #define TNAME "lio_listio/1-1.c" 116 ret = lio_listio(LIO_WAIT, aiocbs, NUM_AIOCBS, &event); in main() 119 printf(TNAME " Error at lio_listio() %d: %s\n", errno, in main() 130 printf(TNAME " lio_listio() did not ignore the sig argument\n"); in main()
|
H A D | 2-1.c | 12 * If mode is LIO_NOWAIT, lio_listio() shall return immediately. 17 * - submit a list of writes to lio_listio in LIO_NOWAIT mode 35 #define TNAME "lio_listio/2-1.c" 111 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event); in main() 114 printf(TNAME " Error at lio_listio() %d: %s\n", errno, in main() 125 " Error lio_listio() waited for list completion\n"); in main()
|
H A D | 13-1.c | 12 * if mode is LIO_WAIT, lio_listio() shall return the value -1 and set 18 * - submit a list with invalid opcodes to lio_listio in LIO_WAIT mode 19 * - check that lio_listio returns -1 35 #define TNAME "lio_listio/13-1.c" 93 ret = lio_listio(LIO_WAIT, aiocbs, NUM_AIOCBS, NULL); in main() 96 printf(TNAME " Error lio_listio() should have returned -1\n"); in main() 106 printf(TNAME " lio_listio() sould set errno to EIO %d\n", in main()
|
H A D | 12-1.c | 12 * if mode is LIO_WAIT, lio_listio() shall return the value zero when 18 * - submit a list of writes to lio_listio in LIO_WAIT mode 19 * - check that lio_listio returns 0 upon completion 35 #define TNAME "lio_listio/12-1.c" 89 ret = lio_listio(LIO_WAIT, aiocbs, NUM_AIOCBS, NULL); in main() 92 printf(TNAME " Error at lio_listio() %d: %s\n", errno, in main()
|
H A D | 3-1.c | 18 * - submit a list of writes to lio_listio in LIO_NOWAIT mode 36 #define TNAME "lio_listio/3-1.c" 130 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event); in main() 133 printf(TNAME " Error at lio_listio() %d: %s\n", errno, in main()
|
H A D | 14-1.c | 18 * - submit a list with an invalid aiocb to lio_listio in LIO_NOWAIT mode 36 #define TNAME "lio_listio/14-1.c" 141 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event); in main() 144 printf(TNAME " Error lio_listio() %s\n", strerror(errno)); in main()
|
H A D | 15-1.c | 18 * - submit a list of requests to lio_listio 36 #define TNAME "lio_listio/15-1.c" 135 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event); in main() 138 printf(TNAME " Error lio_listio() returned %d (%s)\n", in main()
|
H A D | 4-1.c | 18 * - submit list to lio_listio 36 #define TNAME "lio_listio/4-1.c" 138 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event); in main() 141 printf(TNAME " Error at lio_listio() %d: %s\n", errno, in main()
|
H A D | 7-1.c | 18 * - submit list to lio_listio 37 #define TNAME "lio_listio/7-1.c" 135 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event); in main() 138 printf(TNAME " Error at lio_listio() %d: %s\n", errno, in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/aio_h/ |
H A D | 4-1.c | 20 int, struct sigevent *restrict) = lio_listio;
|
/third_party/musl/libc-test/src/api/ |
H A D | aio.c | 40 {int(*p)(int,struct aiocb*restrict const[restrict],int,struct sigevent*restrict) = lio_listio;} in f()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_suspend/ |
H A D | 4-1.c | 143 ret = lio_listio(LIO_NOWAIT, aiolist, NUM_AIOCBS, &event); in main() 146 printf(TNAME " Error at lio_listio() %d: %s\n", in main()
|
H A D | 9-1.c | 128 ret = lio_listio(LIO_NOWAIT, aiocbs, num_aiocbs, &event); in do_test() 131 printf(" Error at lio_listio() %d: %s\n", in do_test()
|
H A D | 1-1.c | 137 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event); in main() 139 printf(TNAME " Error at lio_listio() %d: %s\n", in main()
|