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

  /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 *));