Lines Matching defs:resultp

315     aio_result_t *resultp)
317 return (_aiorw(fd, buf, bufsz, offset, whence, resultp, AIOREAD));
322 aio_result_t *resultp)
324 return (_aiorw(fd, buf, bufsz, offset, whence, resultp, AIOWRITE));
330 aio_result_t *resultp)
332 return (_aiorw(fd, buf, bufsz, offset, whence, resultp, AIOAREAD64));
337 aio_result_t *resultp)
339 return (_aiorw(fd, buf, bufsz, offset, whence, resultp, AIOAWRITE64));
345 aio_result_t *resultp, int mode)
399 resultp->aio_errno = 0;
403 kerr = (int)_kaio(((resultp->aio_return == AIO_INPROGRESS) ?
405 fd, buf, bufsz, loffset, resultp);
431 reqp->req_resultp = resultp;
438 if (_aio_hash_insert(resultp, reqp) != 0) {
452 aiocancel(aio_result_t *resultp)
466 reqp = _aio_hash_find(resultp);
511 aio_result_t *resultp;
575 resultp = uresultp;
601 resultp = kresultp;
610 resultp = (aio_result_t *)-1;
615 resultp = (aio_result_t *)-1;
621 resultp = NULL;
635 resultp = NULL;
639 return (resultp);
1338 aio_result_t *resultp = reqp->req_resultp;
1402 if (resultp->aio_errno == EINPROGRESS)
1414 (void) _aio_hash_del(resultp);
1651 aio_result_t *resultp;
1661 resultp = reqp->req_resultp;
1664 return (resultp);
1688 aio_result_t *resultp = reqp->req_resultp;
1691 resultp->aio_return = retval;
1693 resultp->aio_errno = error;
1695 resultp->aio_errno = error;
1697 resultp->aio_return = retval;
2035 _aio_hash_insert(aio_result_t *resultp, aio_req_t *reqp)
2041 hashp = _aio_hash + AIOHASH(resultp);
2045 if (resultp == next->req_resultp) {
2061 _aio_hash_del(aio_result_t *resultp)
2068 hashp = _aio_hash + AIOHASH(resultp);
2072 if (resultp == next->req_resultp) {
2088 _aio_hash_find(aio_result_t *resultp)
2095 hashp = _aio_hash + AIOHASH(resultp);
2099 if (resultp == next->req_resultp)