Lines Matching refs:qhead
618 aio_enq(aio_req_t **qhead, aio_req_t *reqp, int qflg_new) in aio_enq() argument
623 aio_verify_queue(*qhead, NULL, reqp); in aio_enq()
625 if ((head = *qhead) == NULL) { in aio_enq()
628 *qhead = reqp; in aio_enq()
642 aio_deq(aio_req_t **qhead, aio_req_t *reqp) in aio_deq() argument
644 aio_verify_queue(*qhead, reqp, NULL); in aio_deq()
647 *qhead = NULL; in aio_deq()
651 if (*qhead == reqp) in aio_deq()
652 *qhead = reqp->aio_req_next; in aio_deq()
899 aio_cleanup_cleanupq(aio_t *aiop, aio_req_t *qhead, int exitflg) in aio_cleanup_cleanupq() argument
913 if ((reqp = qhead) == NULL) in aio_cleanup_cleanupq()
932 } while ((reqp = next) != qhead); in aio_cleanup_cleanupq()
940 aio_cleanup_notifyq(aio_t *aiop, aio_req_t *qhead, int exitflg) in aio_cleanup_notifyq() argument
947 if ((reqp = qhead) == NULL) in aio_cleanup_notifyq()
982 } while ((reqp = next) != qhead); in aio_cleanup_notifyq()
991 aio_cleanup_pollq(aio_t *aiop, aio_req_t *qhead, int exitflg) in aio_cleanup_pollq() argument
999 if ((reqp = qhead) == NULL) in aio_cleanup_pollq()
1015 } while ((reqp = next) != qhead); in aio_cleanup_pollq()