HomeSort by relevance Sort by last modified time
    Searched full:lio_listio (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/lio_listio/
coverage.txt 1 this file defines the coverage for the lio_listio() function testing.
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
40 #define TNAME "lio_listio/5-1.c"
90 ret = lio_listio(LIO_WAIT, aiocbs, NUM_AIOCBS, NULL);
93 printf(TNAME " lio_listio() does not accept valid opcodes\n");
123 if (lio_listio(LIO_WAIT, aiocbs, 1, NULL) != -1) {
124 printf(TNAME " lio_listio() accepts invalid opcode\n");
134 printf(TNAME " lio_listio() sould set errno to EIO %d\n",
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
34 #define TNAME "lio_listio/12-1.c"
89 ret = lio_listio(LIO_WAIT, aiocbs, NUM_AIOCBS, NULL);
92 printf(TNAME " Error at lio_listio() %d: %s\n", errno,
18-1.c 12 * lio_listio() shall fail if:
19 * - submit a list of requests to lio_listio usign incorrect mode
35 #define TNAME "lio_listio/18-1.c"
83 ret = lio_listio(-1, aiocbs, NUM_AIOCBS, NULL);
87 " Error lio_listio() should have returned -1: %d\n",
98 " Error lio_listio() should have set errno to EINVAL: %d (%s)\n",
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
34 #define TNAME "lio_listio/13-1.c"
93 ret = lio_listio(LIO_WAIT, aiocbs, NUM_AIOCBS, NULL);
96 printf(TNAME " Error lio_listio() should have returned -1\n");
106 printf(TNAME " lio_listio() sould set errno to EIO %d\n",
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
34 #define TNAME "lio_listio/2-1.c"
126 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event);
129 printf(TNAME " Error at lio_listio() %d: %s\n", errno,
139 printf(TNAME " lio_listio() waited\n");
149 " Error lio_listio() waited for list completion\n");
assertions.xml 3 If mode is LIO_WAIT, lio_listio() shall wait until all I/O is
7 If mode is LIO_NOWAIT, lio_listio() shall return immediately.
34 if mode is LIO_NOWAIT, lio_listio() shall return the value zero if
38 if mode is LIO_NOWAIT, lio_listio() shall return the value -1 and set
42 if mode is LIO_WAIT, lio_listio() shall return the value zero when
46 if mode is LIO_WAIT, lio_listio() shall return the value -1 and set
59 lio_listio() shall fail if:
64 lio_listio() shall fail if:
69 lio_listio() shall fail if:
78 if lio_listio() fails with an error other than [EAGAIN], [EINTR] o
    [all...]
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
36 #define TNAME "lio_listio/1-1.c"
114 ret = lio_listio(LIO_WAIT, aiocbs, NUM_AIOCBS, &event);
117 printf(TNAME " Error at lio_listio() %d: %s\n", errno,
128 printf(TNAME " lio_listio() did not ignore the sig argument\n");
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
35 #define TNAME "lio_listio/10-1.c"
127 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event);
130 printf(TNAME " Error at lio_listio() %d: %s\n", errno,
8-1.c 18 * - submit read request to lio_listio
36 #define TNAME "lio_listio/8-1.c"
82 if (lio_listio(LIO_WAIT, list, 1, NULL) == -1) {
83 printf(TNAME " Error at lio_listio(): %s\n", strerror(errno));
9-1.c 18 * - write data using lio_listio
36 #define TNAME "lio_listio/9-1.c"
76 if (lio_listio(LIO_WAIT, list, 1, NULL) == -1) {
77 printf(TNAME " Error at lio_listio(): %s\n", strerror(errno));
15-1.c 18 * - submit a list of requests to lio_listio
35 #define TNAME "lio_listio/15-1.c"
131 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event);
134 printf(TNAME " Error lio_listio() returned %d (%s)\n",
3-1.c 18 * - submit a list of writes to lio_listio in LIO_NOWAIT mode
35 #define TNAME "lio_listio/3-1.c"
127 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event);
130 printf(TNAME " Error at lio_listio() %d: %s\n", errno,
14-1.c 18 * - submit a list with an invalid aiocb to lio_listio in LIO_NOWAIT mode
35 #define TNAME "lio_listio/14-1.c"
137 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event);
140 printf(TNAME " Error lio_listio() %s\n", strerror(errno));
4-1.c 18 * - submit list to lio_listio
35 #define TNAME "lio_listio/4-1.c"
134 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event);
137 printf(TNAME " Error at lio_listio() %d: %s\n", errno,
6-1.c 33 #define TNAME "lio_listio/6-1.c"
7-1.c 18 * - submit list to lio_listio
36 #define TNAME "lio_listio/7-1.c"
131 ret = lio_listio(LIO_NOWAIT, aiocbs, NUM_AIOCBS, &event);
134 printf(TNAME " Error at lio_listio() %d: %s\n", errno,
  /external/ltp/android/include/
aio.h 46 int lio_listio(int, struct aiocb *restrict const[restrict], int,
  /external/elfutils/tests/
lfs-symbols 46 lio_listio
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/aio_h/
4-1.c 20 int, struct sigevent * restrict) = lio_listio;
assertions.xml 37 int lio_listio(int, struct aiocb *restrict const[restrict],
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib32/
librt-2.15.so 
librt.so 
librt.so.1 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
aio.h 127 /* Synchronization options for `lio_listio' function. */
150 extern int lio_listio (int __mode,
184 extern int __REDIRECT_NTH (lio_listio,
211 # define lio_listio lio_listio64 macro

Completed in 170 milliseconds

1 2 3