Lines Matching refs:frame_buf
476 static struct net_buf *frame_buf; in ieee802154_send() local
485 if (frame_buf == NULL) { in ieee802154_send()
486 frame_buf = net_buf_alloc(&tx_frame_buf_pool, K_FOREVER); in ieee802154_send()
542 net_buf_reset(frame_buf); in ieee802154_send()
543 net_buf_add(frame_buf, ll_hdr_len); in ieee802154_send()
547 pkt_buf = ieee802154_6lo_fragment(&frag_ctx, frame_buf, true); in ieee802154_send()
549 net_buf_add_mem(frame_buf, pkt_buf->data, pkt_buf->len); in ieee802154_send()
557 net_buf_add_mem(frame_buf, pkt_buf->data, pkt_buf->len); in ieee802154_send()
561 __ASSERT_NO_MSG(authtag_len <= net_buf_tailroom(frame_buf)); in ieee802154_send()
562 net_buf_add(frame_buf, authtag_len); in ieee802154_send()
566 frame_buf, ll_hdr_len))) { in ieee802154_send()
570 ret = ieee802154_radio_send(iface, pkt, frame_buf); in ieee802154_send()
575 len += frame_buf->len; in ieee802154_send()