Lines Matching refs:events
135 struct io_event *events,
141 int ret = syscall(__NR_io_pgetevents_time64, ctx, min, max, events,
154 return syscall(__NR_io_getevents, ctx, min, max, events, timeout);
168 return syscall(__NR_io_getevents, ctx, min, max, events, ts32);
170 return syscall(__NR_io_getevents, ctx, min, max, events, NULL);
272 struct io_event events[MAX_INFLIGHTS];
333 memset(events, 0, sizeof(events));
338 events, &timeout);
341 * events.res indicates the actual status of the operation.
344 if (events[0].res < 0) {
349 if (events[0].res == -EBUSY && retry++ < 3) {
364 __FILE__, __LINE__, events[0].res);