HomeSort by relevance Sort by last modified time
    Searched refs:aio_read (Results 1 - 25 of 33) sorted by null

1 2

  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/aio_h/
4-1.c 14 int (*dummy3) (struct aiocb *) = aio_read;
  /external/valgrind/memcheck/tests/darwin/
aio.c 39 assert( aio_read(&a) < 0); // invalid fd
45 assert( aio_read(&a) < 0); // unaddressable aio_buf
50 assert( aio_read(&a) == 0 );
52 assert( aio_read(&a) < 0 ); // (don't crash on the repeated &a)
aio.stderr.exp 2 Warning: invalid file descriptor -1 in syscall aio_read()
3 Syscall param aio_read(aiocbp->aio_buf) points to unaddressable byte(s)
4 at 0x........: aio_read (in /...libc...)
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_read/
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
36 #define TNAME "aio_read/8-1.c"
51 if (aio_read(&aiocb) != -1) {
52 printf(TNAME " aio_read() should fail!\n");
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"
59 if (aio_read(&aiocb) != 0) {
60 printf(TNAME " bad aio_read return value()\n");
11-1.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-1.c"
72 if (aio_read(&aiocb) != -1) {
82 printf(TNAME " bad aio_read return value\n");
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"
67 if (aio_read(&aiocb) != -1) {
68 printf(TNAME " bad aio_read return value()\n");
3-1.c 17 * - read file using aio_read
34 #define TNAME "aio_read/3-1.c"
69 if (aio_read(&aiocb) == -1) {
70 printf(TNAME " Error at aio_read(): %s\n", strerror(errno));
3-2.c 17 * - read file using aio_read
34 #define TNAME "aio_read/3-2.c"
71 if (aio_read(&aiocb) == -1) {
72 printf(TNAME " Error at aio_read(): %s\n", strerror(errno));
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
35 #define TNAME "aio_read/7-1.c"
66 if (aio_read(&aiocb) == -1) {
67 printf(TNAME " Error at aio_read(): %s\n", strerror(errno));
1-1.c 12 * aio_read() shall read aio_nbytes from the files aio_fildes into the
18 * - read 256 bytes using aio_read
33 #define TNAME "aio_read/1-1.c"
78 if (aio_read(&aiocb) == -1) {
79 printf(TNAME " Error at aio_read(): %s\n", strerror(errno));
4-1.c 17 * - read file using aio_read at a given offset
34 #define TNAME "aio_read/4-1.c"
75 if (aio_read(&aiocb) == -1) {
76 printf(TNAME " Error at aio_read(): %s\n", strerror(errno));
5-1.c 18 * - call aio_read with this aiocb
35 #define TNAME "aio_read/5-1.c"
76 if (aio_read(&aiocb) == -1) {
77 printf(TNAME " Error at aio_read(): %s\n", strerror(errno));
9-1.c 12 * aio_read() shall fail with [EAGAIN] if:
37 #define TNAME "aio_read/9-1.c"
82 ret = aio_read(&aiocbs[i]);
  /external/ltp/android/include/
aio.h 39 int aio_read(struct aiocb *);
  /frameworks/av/media/mtp/
AsyncIO.h 56 int aio_read(struct aiocb *);
AsyncIO.cpp 142 int aio_read(struct aiocb *aiocbp) { function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
aio.h 145 extern int aio_read (struct aiocb *__aiocbp) __THROW __nonnull ((1));
179 extern int __REDIRECT_NTH (aio_read, (struct aiocb *__aiocbp), aio_read64)
209 # define aio_read aio_read64 macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
aio.h 145 extern int aio_read (struct aiocb *__aiocbp) __THROW __nonnull ((1));
179 extern int __REDIRECT_NTH (aio_read, (struct aiocb *__aiocbp), aio_read64)
209 # define aio_read aio_read64 macro
  /external/fio/engines/
posixaio.c 179 ret = aio_read(aiocb);
  /frameworks/av/media/mtp/tests/
AsyncIO_test.cpp 62 EXPECT_EQ(aio_read(&aio), 0);
  /external/valgrind/coregrind/m_syswrap/
priv_syswrap-darwin.h 412 DECL_TEMPLATE(darwin, aio_read); // 318
  /prebuilts/go/darwin-x86/src/syscall/
syscall_netbsd.go 274 // aio_read
  /prebuilts/go/linux-x86/src/syscall/
syscall_netbsd.go 274 // aio_read
  /external/fio/
configure 577 aio_read(&cb);
    [all...]

Completed in 4148 milliseconds

1 2