Lines Matching refs:n_hdlc_buf_get
163 static struct n_hdlc_buf *n_hdlc_buf_get(struct n_hdlc_buf_list *list);
202 while ((buf = n_hdlc_buf_get(&n_hdlc->rx_buf_list))) in flush_rx_queue()
211 while ((buf = n_hdlc_buf_get(&n_hdlc->tx_buf_list))) in flush_tx_queue()
251 buf = n_hdlc_buf_get(&n_hdlc->rx_free_buf_list); in n_hdlc_release()
258 buf = n_hdlc_buf_get(&n_hdlc->tx_free_buf_list); in n_hdlc_release()
265 buf = n_hdlc_buf_get(&n_hdlc->rx_buf_list); in n_hdlc_release()
272 buf = n_hdlc_buf_get(&n_hdlc->tx_buf_list); in n_hdlc_release()
396 tbuf = n_hdlc_buf_get(&n_hdlc->tx_buf_list); in n_hdlc_send_frames()
428 tbuf = n_hdlc_buf_get(&n_hdlc->tx_buf_list); in n_hdlc_send_frames()
523 buf = n_hdlc_buf_get(&n_hdlc->rx_free_buf_list); in n_hdlc_tty_receive()
595 rbuf = n_hdlc_buf_get(&n_hdlc->rx_buf_list); in n_hdlc_tty_read()
679 tbuf = n_hdlc_buf_get(&n_hdlc->tx_free_buf_list); in n_hdlc_tty_write()
926 static struct n_hdlc_buf *n_hdlc_buf_get(struct n_hdlc_buf_list *buf_list) in n_hdlc_buf_get() function