Lines Matching defs:resp_buf
1758 * __svc_dup(struct svc_req *req, caddr_t *resp_buf, uint_t *resp_bufsz,
1764 * resp_buf, and its length in resp_bufsz. DUP_ERROR is returned on error.
1767 __svc_dup(struct svc_req *req, caddr_t *resp_buf, uint_t *resp_bufsz,
1790 if ((rc = __svc_dupcache_check(req, resp_buf, resp_bufsz, dc, drxid,
1807 * __svc_dupcache_check(struct svc_req *req, caddr_t *resp_buf,
1811 * copy back into the resp_buf, if appropriate. Return the status of
1815 __svc_dupcache_check(struct svc_req *req, caddr_t *resp_buf, uint_t *resp_bufsz,
1848 resp_buf != NULL &&
1850 *resp_buf = malloc(dr->dr_resp.len);
1851 if (*resp_buf == NULL) {
1857 (void) memset(*resp_buf, 0, dr->dr_resp.len);
1858 (void) memcpy(*resp_buf, dr->dr_resp.buf,
1863 if (resp_buf)
1864 *resp_buf = NULL;
2010 * __svc_dupdone(struct svc_req *req, caddr_t resp_buf, uint_t resp_bufsz,
2017 __svc_dupdone(struct svc_req *req, caddr_t resp_buf, uint_t resp_bufsz,
2045 if ((rc = __svc_dupcache_update(req, resp_buf, resp_bufsz, status,
2055 * __svc_dupcache_update(struct svc_req *req, caddr_t resp_buf,
2063 __svc_dupcache_update(struct svc_req *req, caddr_t resp_buf, uint_t resp_bufsz,
2088 if (resp_buf != NULL) {
2097 (void) memcpy(dr->dr_resp.buf, resp_buf,