HomeSort by relevance Sort by last modified time
    Searched refs:aio_events (Results 1 - 8 of 8) sorted by null

  /external/fio/engines/
gfapi.h 13 struct io_u **aio_events; member in struct:gf_data
glusterfs_async.c 19 return gf_data->aio_events[event];
41 g->aio_events[events] = io_u;
154 g->aio_events = calloc(td->o.iodepth, sizeof(struct io_u *));
155 if (!g->aio_events) {
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 *));
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 *));
libaio.c 22 struct io_event *aio_events; member in struct:libaio_data
90 ev = ld->aio_events + event;
165 ld->aio_events + events);
168 max, ld->aio_events + events, lt);
313 return io_cancel(ld->aio_ctx, &io_u->iocb, ld->aio_events);
329 free(ld->aio_events);
362 ld->aio_events = calloc(ld->entries, sizeof(struct io_event));
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);
148 free(wd->aio_events);
260 return wd->aio_events[event];
292 wd->aio_events[dequeued] = io_u;
rbd.c 36 struct io_u **aio_events; member in struct:rbd_data
120 rbd->aio_events = calloc(td->o.iodepth, sizeof(struct io_u *));
121 if (!rbd->aio_events)
133 if (rbd->aio_events)
134 free(rbd->aio_events);
305 return rbd->aio_events[event];
315 rbd->aio_events[*events] = io_u;
558 free(rbd->aio_events);
glusterfs.c 54 g->aio_events = NULL;
95 if (g->aio_events)
96 free(g->aio_events);

Completed in 77 milliseconds