/external/fio/engines/ |
gfapi.h | 13 struct io_u **aio_events; member in struct:gf_data
|
solarisaio.c | 16 struct io_u **aio_events; member in struct:solarisaio_data 67 * the ->aio_pending store is seen after the ->aio_events store 69 sd->aio_events[sd->aio_pending] = io_u; 105 return sd->aio_events[event]; 161 free(sd->aio_events); 199 sd->aio_events = malloc(max_depth * sizeof(struct io_u *)); 200 memset(sd->aio_events, 0, max_depth * sizeof(struct io_u *));
|
posixaio.c | 16 struct io_u **aio_events; member in struct:posixaio_data 131 pd->aio_events[r++] = io_u; 166 return pd->aio_events[event]; 226 free(pd->aio_events); 236 pd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u *)); 237 memset(pd->aio_events, 0, td->o.iodepth * sizeof(struct io_u *));
|
libaio.c | 20 struct io_event *aio_events; member in struct:libaio_data 88 ev = ld->aio_events + event; 163 ld->aio_events + events); 166 max, ld->aio_events + events, lt); 311 return io_cancel(ld->aio_ctx, &io_u->iocb, ld->aio_events); 320 free(ld->aio_events); 353 ld->aio_events = calloc(ld->entries, sizeof(struct io_event));
|
rbd.c | 23 struct io_u **aio_events; member in struct:rbd_data 90 rbd->aio_events = calloc(td->o.iodepth, sizeof(struct io_u *)); 91 if (!rbd->aio_events) 202 return rbd->aio_events[event]; 212 rbd->aio_events[*events] = io_u; 417 free(rbd->aio_events);
|
windowsaio.c | 26 struct io_u **aio_events; member in struct:windowsaio_data 62 wd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u*)); 63 if (wd->aio_events == NULL) { 80 if (wd->aio_events != NULL) 81 free(wd->aio_events); 143 free(wd->aio_events); 255 return wd->aio_events[event]; 288 wd->aio_events[dequeued] = io_u;
|