Lines Matching refs:aue_buf
914 c->aue_buf = usbd_alloc_buffer(c->aue_xfer, AUE_BUFSZ); in aue_rx_list_init()
915 if (c->aue_buf == NULL) in aue_rx_list_init()
942 c->aue_buf = usbd_alloc_buffer(c->aue_xfer, AUE_BUFSZ); in aue_tx_list_init()
943 if (c->aue_buf == NULL) in aue_tx_list_init()
1030 memcpy(mtod(c->aue_mbuf, char *), c->aue_buf, total_len); in aue_rxeof()
1037 memcpy(&r, c->aue_buf + total_len - 4, sizeof(r)); in aue_rxeof()
1065 c, c->aue_buf, AUE_BUFSZ, in aue_rxeof()
1188 m_copydata(m, 0, m->m_pkthdr.len, c->aue_buf + 2); in aue_send()
1197 c->aue_buf[0] = (u_int8_t)m->m_pkthdr.len; in aue_send()
1198 c->aue_buf[1] = (u_int8_t)(m->m_pkthdr.len >> 8); in aue_send()
1202 c, c->aue_buf, total_len, USBD_FORCE_SHORT_XFER | USBD_NO_COPY, in aue_send()
1369 c, c->aue_buf, AUE_BUFSZ, in aue_openpipes()