HomeSort by relevance Sort by last modified time
    Searched defs:aiocb (Results 1 - 5 of 5) sorted by null

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
aio.h 35 struct aiocb struct
45 struct aiocb *__next_prio;
61 to __return_value have to be the same in aiocb and aiocb64. */
73 struct aiocb *__next_prio;
145 extern int aio_read (struct aiocb *__aiocbp) __THROW __nonnull ((1));
147 extern int aio_write (struct aiocb *__aiocbp) __THROW __nonnull ((1));
151 struct aiocb *__const __list[__restrict_arr],
156 extern int aio_error (__const struct aiocb *__aiocbp) __THROW __nonnull ((1));
158 extern __ssize_t aio_return (struct aiocb *__aiocbp) __THROW __nonnull ((1));
162 extern int aio_cancel (int __fildes, struct aiocb *__aiocbp) __THROW
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
aio.h 35 struct aiocb struct
45 struct aiocb *__next_prio;
61 to __return_value have to be the same in aiocb and aiocb64. */
73 struct aiocb *__next_prio;
145 extern int aio_read (struct aiocb *__aiocbp) __THROW __nonnull ((1));
147 extern int aio_write (struct aiocb *__aiocbp) __THROW __nonnull ((1));
151 struct aiocb *__const __list[__restrict_arr],
156 extern int aio_error (__const struct aiocb *__aiocbp) __THROW __nonnull ((1));
158 extern __ssize_t aio_return (struct aiocb *__aiocbp) __THROW __nonnull ((1));
162 extern int aio_cancel (int __fildes, struct aiocb *__aiocbp) __THROW
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
aio.h 35 struct aiocb struct
45 struct aiocb *__next_prio;
61 to __return_value have to be the same in aiocb and aiocb64. */
73 struct aiocb *__next_prio;
145 extern int aio_read (struct aiocb *__aiocbp) __THROW __nonnull ((1));
147 extern int aio_write (struct aiocb *__aiocbp) __THROW __nonnull ((1));
151 struct aiocb *__const __list[__restrict_arr],
156 extern int aio_error (__const struct aiocb *__aiocbp) __THROW __nonnull ((1));
158 extern __ssize_t aio_return (struct aiocb *__aiocbp) __THROW __nonnull ((1));
162 extern int aio_cancel (int __fildes, struct aiocb *__aiocbp) __THROW
    [all...]
  /external/qemu/hw/
scsi-disk.c 58 BlockDriverAIOCB *aiocb; member in struct:SCSIRequest
98 r->aiocb = NULL;
158 if (r->aiocb)
159 bdrv_aio_cancel(r->aiocb);
160 r->aiocb = NULL;
213 r->aiocb = bdrv_aio_readv(s->bdrv, r->sector, &r->qiov, n,
215 if (r->aiocb == NULL)
247 r->aiocb = NULL;
278 r->aiocb = bdrv_aio_writev(s->bdrv, r->sector, &r->qiov, n,
280 if (r->aiocb == NULL
    [all...]
  /external/qemu/
posix-aio-compat.c 121 static ssize_t handle_aiocb_ioctl(struct qemu_paiocb *aiocb)
125 ret = ioctl(aiocb->aio_fildes, aiocb->aio_ioctl_cmd, aiocb->aio_ioctl_buf);
137 return aiocb->aio_nbytes;
140 static ssize_t handle_aiocb_flush(struct qemu_paiocb *aiocb)
144 ret = qemu_fdatasync(aiocb->aio_fildes);
180 static ssize_t handle_aiocb_rw_vector(struct qemu_paiocb *aiocb)
186 if (aiocb->aio_type & QEMU_AIO_WRITE)
187 len = qemu_pwritev(aiocb->aio_fildes
311 struct qemu_paiocb *aiocb; local
    [all...]

Completed in 93 milliseconds