Lines Matching refs:rdp

447 		uri_rd_t *rdp = &uri->response;  in nl7c_uri_inactive()  local
450 while (rdp) { in nl7c_uri_inactive()
451 if (rdp->off == -1) { in nl7c_uri_inactive()
452 bytes += rdp->sz; in nl7c_uri_inactive()
453 kmem_free(rdp->data.kmem, rdp->sz); in nl7c_uri_inactive()
455 VN_RELE(rdp->data.vnode); in nl7c_uri_inactive()
457 rdp = rdp->next; in nl7c_uri_inactive()
461 free = rdp; in nl7c_uri_inactive()
1121 uri_rd_t *rdp; in nl7c_data() local
1142 URI_RD_ADD(uri, rdp, sz, -1); in nl7c_data()
1143 if (rdp == NULL) { in nl7c_data()
1154 rdp->data.kmem = data; in nl7c_data()
1182 error = uri_rd_response(so, uri, rdp, first); in nl7c_data()
1291 uri_rd_t *rdp; in nl7c_sendfilev() local
1378 URI_RD_ADD(uri, rdp, cnt, -1); in nl7c_sendfilev()
1379 if (rdp == NULL) { in nl7c_sendfilev()
1385 rdp->data.kmem = data; in nl7c_sendfilev()
1396 error = uri_rd_response(so, uri, rdp, first); in nl7c_sendfilev()
1407 URI_RD_ADD(uri, rdp, len - cnt, off); in nl7c_sendfilev()
1408 if (rdp == NULL) { in nl7c_sendfilev()
1412 rdp->data.vnode = vp; in nl7c_sendfilev()
1415 error = uri_rd_response(so, uri, rdp, first); in nl7c_sendfilev()
1554 uri_segmap_map(uri_rd_t *rdp, int bytes) in uri_segmap_map() argument
1557 int len = MIN(rdp->sz, MAXBSIZE); in uri_segmap_map()
1564 VN_HOLD(rdp->data.vnode); in uri_segmap_map()
1565 segmap->vp = rdp->data.vnode; in uri_segmap_map()
1567 segmap->base = segmap_getmapflt(segkmap, segmap->vp, rdp->off, len, in uri_segmap_map()
1706 uri_rd_t *rdp, in uri_rd_response() argument
1730 bcopy(rdp, &rd, sizeof (rd)); in uri_rd_response()
1845 uri_rd_t *rdp = &uri->response; in uri_response() local
1849 while (rdp != NULL) { in uri_response()
1850 error = uri_rd_response(so, uri, rdp, first); in uri_response()
1855 rdp = rdp->next; in uri_response()