Lines Matching refs:cq
206 struct copyreq *cq = (struct copyreq *)mp->b_rptr; in mi_copyin() local
217 cq->cq_private = mp->b_cont; in mi_copyin()
218 cq->cq_size = len; in mi_copyin()
219 cq->cq_flag = 0; in mi_copyin()
220 bcopy(mp->b_cont->b_rptr, &cq->cq_addr, sizeof (cq->cq_addr)); in mi_copyin()
296 struct copyreq *cq = (struct copyreq *)mp->b_rptr; in mi_copyin_n() local
302 cq->cq_private = mp->b_cont; in mi_copyin_n()
303 cq->cq_size = len; in mi_copyin_n()
304 cq->cq_flag = 0; in mi_copyin_n()
305 bcopy(mp->b_cont->b_rptr, &cq->cq_addr, sizeof (cq->cq_addr)); in mi_copyin_n()
306 cq->cq_addr += offset; in mi_copyin_n()
316 struct copyreq *cq = (struct copyreq *)iocp; in mi_copyout() local
317 struct copyresp *cp = (struct copyresp *)cq; in mi_copyout()
352 cq->cq_private = mp1; in mi_copyout()
357 bcopy((char *)mp1->b_rptr, (char *)&cq->cq_addr, in mi_copyout()
358 sizeof (cq->cq_addr)); in mi_copyout()
360 cq->cq_addr = (char *)mp2->b_cont->b_next; in mi_copyout()
366 cq->cq_size = mp1->b_wptr - mp1->b_rptr; in mi_copyout()
367 cq->cq_flag = 0; in mi_copyout()