HomeSort by: relevance | last modified time | path
    Searched refs:rd_txbuf (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/netbt/
rfcomm_upper.c 247 if (dlc->rd_txbuf != NULL && linger != 0) {
285 m_freem(dlc->rd_txbuf);
286 dlc->rd_txbuf = NULL;
395 if (dlc->rd_txbuf != NULL) {
396 dlc->rd_txbuf->m_pkthdr.len += m->m_pkthdr.len;
397 m_cat(dlc->rd_txbuf, m);
399 dlc->rd_txbuf = m;
rfcomm_dlc.c 370 if (dlc->rd_txbuf == NULL)
390 m = dlc->rd_txbuf;
392 dlc->rd_txbuf = m_split(m, len, M_DONTWAIT);
393 if (dlc->rd_txbuf == NULL) {
394 dlc->rd_txbuf = m;
398 dlc->rd_txbuf = NULL;
hci_ioctl.c 116 (dlc->rd_txbuf ? dlc->rd_txbuf->m_pkthdr.len : 0));
rfcomm.h 338 struct mbuf *rd_txbuf; /* transmit buffer */ member in struct:rfcomm_dlc
rfcomm_session.c 484 && dlc->rd_txbuf == NULL && dlc->rd_pending == 0) {
970 if (credits > 0 && dlc->rd_txbuf != NULL)

Completed in 17 milliseconds