Home
last modified time | relevance | path

Searched refs:req_next (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/aio/
H A Daio.c723 *reqpp = reqp->req_next; in aiocancel_all()
725 last = reqp->req_next; in aiocancel_all()
736 reqpp = &reqp->req_next; in aiocancel_all()
784 reqp = reqp->req_next; in _aio_cancel_work()
1601 reqp->req_next = NULL; in _aio_work_done()
1636 _aio_done_head->req_next = reqp; in _aio_work_done()
1665 if ((_aio_done_tail = reqp->req_next) == NULL) in _aio_req_done()
1724 reqp->req_next = NULL; in _aio_req_add()
1830 aiowp->work_head1->req_next = reqp; in _aio_req_add()
1877 aiowp->work_tail1 = reqp->req_next; in _aio_req_get()
[all …]
/illumos-gate/usr/src/cmd/logins/
H A Dlogins.c1129 struct reqlogin *req_next; in build_localpw() local
1135 req_next = req_head; in build_localpw()
1137 while (req_next != NULL) { in build_localpw()
1138 if ((pw = getpwnam(req_next->loginname)) != NULL) { in build_localpw()
1143 req_next->found = TRUE; in build_localpw()
1147 req_next = req_next->next; in build_localpw()
/illumos-gate/usr/src/lib/libc/inc/
H A Dasyncio.h126 aio_req_t *req_next; /* request/done queue link */ member