Lines Matching refs:cue_buf
616 c->cue_buf = usbd_alloc_buffer(c->cue_xfer, CUE_BUFSZ); in cue_rx_list_init()
617 if (c->cue_buf == NULL) { in cue_rx_list_init()
644 c->cue_buf = usbd_alloc_buffer(c->cue_xfer, CUE_BUFSZ); in cue_tx_list_init()
645 if (c->cue_buf == NULL) { in cue_tx_list_init()
697 memcpy(mtod(c->cue_mbuf, char *), c->cue_buf, total_len); in cue_rxeof()
726 c, c->cue_buf, CUE_BUFSZ, USBD_SHORT_XFER_OK | USBD_NO_COPY, in cue_rxeof()
831 m_copydata(m, 0, m->m_pkthdr.len, c->cue_buf + 2); in cue_send()
840 c->cue_buf[0] = (u_int8_t)m->m_pkthdr.len; in cue_send()
841 c->cue_buf[1] = (u_int8_t)(m->m_pkthdr.len >> 8); in cue_send()
845 c, c->cue_buf, total_len, USBD_NO_COPY, 10000, cue_txeof); in cue_send()
1018 c, c->cue_buf, CUE_BUFSZ, in cue_open_pipes()