Home
last modified time | relevance | path

Searched refs:cue_buf (Results 1 – 2 of 2) sorted by relevance

/openbsd/sys/dev/usb/
H A Dif_cue.c616 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()
[all …]
H A Dif_cuereg.h153 char *cue_buf; member