Lines Matching defs:resp
286 drctl_resp_t *resp;
289 resp = kmem_alloc(size, KM_SLEEP);
291 __func__, (void *)resp, size);
293 resp->resp_type = DRCTL_RESP_OK;
294 rsrc = resp->resp_resources;
305 return (resp);
314 drctl_resp_t *resp;
320 resp = kmem_alloc(*size, KM_SLEEP);
322 __func__, (void *)resp, *size);
324 resp->resp_type = DRCTL_RESP_ERR;
325 (void) strcpy(resp->resp_err_msg, msg);
327 return (resp);
338 int count, drctl_resp_t *resp, size_t sent_len, size_t resp_len)
340 drctl_rsrc_t *rsrc = resp->resp_resources;