Home
last modified time | relevance | path

Searched refs:iso_hdr (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/drivers/bluetooth/hci/
Dhci_stm32wb0.c346 struct bt_hci_iso_hdr iso_hdr; in get_rx() local
350 memcpy(&iso_hdr, &msg[1], sizeof(iso_hdr)); in get_rx()
351 len = sizeof(iso_hdr) + sys_le16_to_cpu(iso_hdr.len); in get_rx()
Dhci_spi_st.c475 struct bt_hci_iso_hdr iso_hdr; in bt_spi_rx_buf_construct() local
479 memcpy(&iso_hdr, &msg[1], sizeof(iso_hdr)); in bt_spi_rx_buf_construct()
480 len = sizeof(iso_hdr) + bt_iso_hdr_len(sys_le16_to_cpu(iso_hdr.len)); in bt_spi_rx_buf_construct()
/Zephyr-latest/subsys/usb/device/class/
Dbluetooth.c225 struct bt_hci_iso_hdr *iso_hdr; in hci_pkt_get_len() local
227 hdr_len = sizeof(*iso_hdr); in hci_pkt_get_len()
228 iso_hdr = (struct bt_hci_iso_hdr *)data; in hci_pkt_get_len()
229 len = bt_iso_hdr_len(sys_le16_to_cpu(iso_hdr->len)) + hdr_len; in hci_pkt_get_len()
/Zephyr-latest/subsys/usb/device_next/class/
Dbt_hci.c297 struct bt_hci_iso_hdr *iso_hdr; in hci_pkt_get_len() local
299 hdr_len = sizeof(*iso_hdr); in hci_pkt_get_len()
300 iso_hdr = (struct bt_hci_iso_hdr *)data; in hci_pkt_get_len()
301 len = bt_iso_hdr_len(sys_le16_to_cpu(iso_hdr->len)) + hdr_len; in hci_pkt_get_len()
/Zephyr-latest/subsys/bluetooth/controller/hci/
Dhci.c5884 struct bt_hci_iso_hdr *iso_hdr; local
5895 if (buf->len < sizeof(*iso_hdr)) {
5900 iso_hdr = net_buf_pull_mem(buf, sizeof(*iso_hdr));
5901 handle = sys_le16_to_cpu(iso_hdr->handle);
5902 len = bt_iso_hdr_len(sys_le16_to_cpu(iso_hdr->len));