Lines Matching refs:resultp

319     aio_result_t *resultp)
321 return (_aiorw(fd, buf, bufsz, offset, whence, resultp, AIOREAD));
326 aio_result_t *resultp)
328 return (_aiorw(fd, buf, bufsz, offset, whence, resultp, AIOWRITE));
334 aio_result_t *resultp)
336 return (_aiorw(fd, buf, bufsz, offset, whence, resultp, AIOAREAD64));
341 aio_result_t *resultp)
343 return (_aiorw(fd, buf, bufsz, offset, whence, resultp, AIOAWRITE64));
349 aio_result_t *resultp, int mode)
403 resultp->aio_errno = 0;
407 kerr = (int)_kaio(((resultp->aio_return == AIO_INPROGRESS) ?
409 fd, buf, bufsz, loffset, resultp);
435 reqp->req_resultp = resultp;
442 if (_aio_hash_insert(resultp, reqp) != 0) {
456 aiocancel(aio_result_t *resultp)
470 reqp = _aio_hash_find(resultp);
515 aio_result_t *resultp;
579 resultp = uresultp;
605 resultp = kresultp;
614 resultp = (aio_result_t *)-1;
619 resultp = (aio_result_t *)-1;
625 resultp = NULL;
639 resultp = NULL;
643 return (resultp);
1345 aio_result_t *resultp = reqp->req_resultp;
1409 if (resultp->aio_errno == EINPROGRESS)
1421 (void) _aio_hash_del(resultp);
1658 aio_result_t *resultp;
1668 resultp = reqp->req_resultp;
1671 return (resultp);
1695 aio_result_t *resultp = reqp->req_resultp;
1698 resultp->aio_return = retval;
1700 resultp->aio_errno = error;
1702 resultp->aio_errno = error;
1704 resultp->aio_return = retval;
2042 _aio_hash_insert(aio_result_t *resultp, aio_req_t *reqp)
2048 hashp = _aio_hash + AIOHASH(resultp);
2052 if (resultp == next->req_resultp) {
2068 _aio_hash_del(aio_result_t *resultp)
2075 hashp = _aio_hash + AIOHASH(resultp);
2079 if (resultp == next->req_resultp) {
2095 _aio_hash_find(aio_result_t *resultp)
2102 hashp = _aio_hash + AIOHASH(resultp);
2106 if (resultp == next->req_resultp)