Home
last modified time | relevance | path

Searched refs:rd_txbuf (Results 1 – 5 of 5) sorted by relevance

/netbsd/src/sys/netbt/
Drfcomm_upper.c247 if (dlc->rd_txbuf != NULL && linger != 0) { in rfcomm_disconnect_pcb()
285 m_freem(dlc->rd_txbuf); in rfcomm_detach_pcb()
286 dlc->rd_txbuf = NULL; in rfcomm_detach_pcb()
395 if (dlc->rd_txbuf != NULL) { in rfcomm_send_pcb()
396 dlc->rd_txbuf->m_pkthdr.len += m->m_pkthdr.len; in rfcomm_send_pcb()
397 m_cat(dlc->rd_txbuf, m); in rfcomm_send_pcb()
399 dlc->rd_txbuf = m; in rfcomm_send_pcb()
Drfcomm_dlc.c370 if (dlc->rd_txbuf == NULL) in rfcomm_dlc_start()
390 m = dlc->rd_txbuf; in rfcomm_dlc_start()
392 dlc->rd_txbuf = m_split(m, len, M_DONTWAIT); in rfcomm_dlc_start()
393 if (dlc->rd_txbuf == NULL) { in rfcomm_dlc_start()
394 dlc->rd_txbuf = m; in rfcomm_dlc_start()
398 dlc->rd_txbuf = NULL; in rfcomm_dlc_start()
Dhci_ioctl.c116 (dlc->rd_txbuf ? dlc->rd_txbuf->m_pkthdr.len : 0)); in hci_dump()
Drfcomm.h338 struct mbuf *rd_txbuf; /* transmit buffer */ member
Drfcomm_session.c484 && dlc->rd_txbuf == NULL && dlc->rd_pending == 0) { in rfcomm_session_complete()
970 if (credits > 0 && dlc->rd_txbuf != NULL) in rfcomm_session_recv_uih()