Searched defs:iocb (Results 1 - 6 of 6) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_linux.cc95 CHECK_TYPE_SIZE(iocb); variable
96 CHECK_SIZE_AND_OFFSET(iocb, aio_data);
98 CHECK_SIZE_AND_OFFSET(iocb, aio_lio_opcode);
99 CHECK_SIZE_AND_OFFSET(iocb, aio_reqprio);
100 CHECK_SIZE_AND_OFFSET(iocb, aio_fildes);
101 CHECK_SIZE_AND_OFFSET(iocb, aio_buf);
102 CHECK_SIZE_AND_OFFSET(iocb, aio_nbytes);
103 CHECK_SIZE_AND_OFFSET(iocb, aio_offset);
/external/compiler-rt/test/msan/Linux/
H A Dsyscalls.cc88 struct iocb iocb[3]; local
89 struct iocb *iocbp[3] = { &iocb[0], &iocb[1], &iocb[2] };
90 memset(iocb, 0, sizeof(iocb));
91 iocb[0].aio_lio_opcode = IOCB_CMD_PREAD;
92 iocb[
[all...]
/external/strace/
H A Daio.c99 print_common_flags(struct iocb *iocb) argument
102 if (iocb->u.c.flags & IOCB_RESFD)
103 tprintf(", resfd=%d", iocb->u.c.resfd);
104 if (iocb->u.c.flags & ~IOCB_RESFD)
105 tprintf(", flags=%x", iocb->u.c.flags);
122 struct iocb **iocbs = (void *)tcp->u_arg[2];
127 struct iocb *iocbp;
128 struct iocb iocb; local
201 struct iocb iocb; local
[all...]
/external/kernel-headers/original/uapi/linux/
H A Daio_abi.h50 * Valid flags for the "aio_flags" member of the "struct iocb".
52 * IOCB_FLAG_RESFD - Set if the "aio_resfd" member of the "struct iocb"
59 __u64 data; /* the data field from the iocb */
60 __u64 obj; /* what iocb this event came from */
79 struct iocb { struct
97 /* flags for the "struct iocb" */
/external/fio/
H A Dioengine.h97 struct iocb iocb; member in union:io_u::__anon4926
/external/blktrace/btreplay/
H A Dbtreplay.c83 * @free_iocbs: List of free iocb's available for use
84 * @used_iocbs: List of iocb's currently outstanding
120 * @iocb: IOCB sent down via io_submit
123 * @nbytes: Number of bytes in buffer associated with iocb
126 struct iocb iocb; member in struct:iocb_pkt
702 iocbp->iocb.u.c.buf = NULL;
706 * iocb_setup - Set up an iocb with this AIOs information
715 struct iocb *iop = &iocbp->iocb;
[all...]

Completed in 402 milliseconds