Home
last modified time | relevance | path

Searched refs:net_buf_push_u8 (Results 1 – 19 of 19) sorted by relevance

/Zephyr-latest/subsys/bluetooth/host/
Dhci_raw.c204 net_buf_push_u8(buf, BT_HCI_H4_EVT); in bt_hci_recv()
207 net_buf_push_u8(buf, BT_HCI_H4_ACL); in bt_hci_recv()
211 net_buf_push_u8(buf, BT_HCI_H4_ISO); in bt_hci_recv()
Dgatt.c2354 net_buf_push_u8(buf, BT_ATT_OP_NOTIFY); in gatt_notify_mult_send()
/Zephyr-latest/drivers/bluetooth/hci/
Duserchan.c302 net_buf_push_u8(buf, BT_HCI_H4_ACL); in uc_send()
305 net_buf_push_u8(buf, BT_HCI_H4_CMD); in uc_send()
309 net_buf_push_u8(buf, BT_HCI_H4_ISO); in uc_send()
Dhci_silabs_efr32.c114 net_buf_push_u8(buf, BT_HCI_H4_ACL); in slz_bt_send()
117 net_buf_push_u8(buf, BT_HCI_H4_CMD); in slz_bt_send()
Dhci_ambiq.c357 net_buf_push_u8(buf, BT_HCI_H4_ACL); in bt_apollo_send()
360 net_buf_push_u8(buf, BT_HCI_H4_CMD); in bt_apollo_send()
Dspi.c323 net_buf_push_u8(buf, BT_HCI_H4_ACL); in bt_spi_send()
326 net_buf_push_u8(buf, BT_HCI_H4_CMD); in bt_spi_send()
Dhci_spi_st.c574 net_buf_push_u8(buf, BT_HCI_H4_ACL); in bt_spi_send()
577 net_buf_push_u8(buf, BT_HCI_H4_CMD); in bt_spi_send()
581 net_buf_push_u8(buf, BT_HCI_H4_ISO); in bt_spi_send()
Dhci_da1469x.c480 net_buf_push_u8(buf, BT_HCI_H4_ACL); in bt_da1469x_send()
484 net_buf_push_u8(buf, BT_HCI_H4_CMD); in bt_da1469x_send()
Dhci_esp32.c258 net_buf_push_u8(buf, pkt_indicator); in bt_esp32_send()
Dhci_nxp.c413 net_buf_push_u8(buf, packetType); in bt_nxp_send()
Dipc.c270 net_buf_push_u8(buf, pkt_indicator); in bt_ipc_send()
Dhci_stm32wba.c329 net_buf_push_u8(buf, pkt_indicator); in bt_hci_stm32wba_send()
Dipm_stm32wb.c368 net_buf_push_u8(buf, BT_HCI_H4_ACL); in bt_ipm_send()
/Zephyr-latest/samples/bluetooth/hci_spi/src/
Dmain.c114 net_buf_push_u8(buf, HCI_ACL); in spi_send()
117 net_buf_push_u8(buf, HCI_EVT); in spi_send()
/Zephyr-latest/tests/net/net_pkt/src/
Dmain.c958 net_buf_push_u8(frag3, 'D'); in ZTEST()
959 net_buf_push_u8(frag2, 'C'); in ZTEST()
960 net_buf_push_u8(frag2, 'B'); in ZTEST()
961 net_buf_push_u8(frag1, 'A'); in ZTEST()
/Zephyr-latest/samples/bluetooth/hci_ipc/src/
Dmain.c248 net_buf_push_u8(buf, pkt_indicator); in hci_ipc_send()
/Zephyr-latest/doc/services/net_buf/
Dindex.rst102 void net_buf_push_u8(struct net_buf *buf, uint8_t value);
/Zephyr-latest/subsys/bluetooth/host/classic/
Drfcomm.c1484 net_buf_push_u8(buf, BT_RFCOMM_SET_LEN_8(buf->len)); in bt_rfcomm_dlc_send()
1488 net_buf_push_u8(buf, BT_RFCOMM_SET_CTRL(BT_RFCOMM_UIH, in bt_rfcomm_dlc_send()
1492 net_buf_push_u8(buf, BT_RFCOMM_SET_ADDR(dlc->dlci, cr)); in bt_rfcomm_dlc_send()
/Zephyr-latest/include/zephyr/
Dnet_buf.h2087 static inline void net_buf_push_u8(struct net_buf *buf, uint8_t val) in net_buf_push_u8() function