Home
last modified time | relevance | path

Searched refs:net_buf_headroom (Results 1 – 10 of 10) sorted by relevance

/Zephyr-latest/subsys/bluetooth/host/
Dbuf.c212 __ASSERT_NO_MSG(net_buf_headroom(parent) > 0); in bt_buf_make_view()
219 view->size = net_buf_headroom(parent) + len; in bt_buf_make_view()
Diso.c846 if (net_buf_headroom(buf) != BT_BUF_ISO_SIZE(0)) { in validate_send()
848 net_buf_headroom(buf), BT_BUF_ISO_SIZE(0)); in validate_send()
Dl2cap.c3242 if (net_buf_headroom(buf) < BT_L2CAP_SDU_CHAN_SEND_RESERVE) { in bt_l2cap_dyn_chan_send()
Dconn.c553 if (net_buf_headroom(buf) == in contains_iso_timestamp()
/Zephyr-latest/tests/bsim/bluetooth/host/iso/frag/src/
Dbroadcaster.c47 net_buf_headroom(buf)); in send_data()
/Zephyr-latest/tests/bsim/bluetooth/host/iso/frag_2/src/
Dbroadcaster.c50 LOG_INF("Sending SDU (headroom %d)", net_buf_headroom(buf)); in send_data()
/Zephyr-latest/tests/lib/net_buf/buf/src/
Dmain.c349 ipv6 = (struct ipv6_hdr *)(frag->data - net_buf_headroom(frag)); in ZTEST()
402 ipv6 = (struct ipv6_hdr *)(frags[i]->data - net_buf_headroom(frags[i])); in ZTEST()
/Zephyr-latest/subsys/bluetooth/controller/hci/
Dhci_driver.c162 net_buf_reserve(buf, SDU_HCI_HDR_SIZE + net_buf_headroom(buf)); in sink_sdu_alloc_hci()
/Zephyr-latest/lib/net_buf/
Dbuf.c512 clone->data = clone->__buf + net_buf_headroom(buf); in net_buf_clone()
/Zephyr-latest/include/zephyr/
Dnet_buf.h2466 static inline size_t net_buf_headroom(const struct net_buf *buf) in net_buf_headroom() function