Home
last modified time | relevance | path

Searched refs:acl_hdr (Results 1 – 8 of 8) sorted by relevance

/Zephyr-latest/samples/bluetooth/hci_spi/src/
Dmain.c172 struct bt_hci_acl_hdr *acl_hdr; in bt_tx_thread() member
233 hci_hdr.acl_hdr, in bt_tx_thread()
234 sizeof(*hci_hdr.acl_hdr)); in bt_tx_thread()
237 sys_le16_to_cpu(hci_hdr.acl_hdr->len)); in bt_tx_thread()
/Zephyr-latest/drivers/bluetooth/hci/
Dipm_stm32wb.c174 struct bt_hci_acl_hdr acl_hdr; in bt_ipm_rx_thread() local
229 acl_hdr.handle = acl->handle; in bt_ipm_rx_thread()
230 acl_hdr.len = acl->length; in bt_ipm_rx_thread()
231 LOG_DBG("ACL: handle %x, len %x", acl_hdr.handle, acl_hdr.len); in bt_ipm_rx_thread()
232 net_buf_add_mem(buf, &acl_hdr, sizeof(acl_hdr)); in bt_ipm_rx_thread()
235 buf_add_len = acl_hdr.len; in bt_ipm_rx_thread()
Dspi.c186 struct bt_hci_acl_hdr acl_hdr; in bt_spi_rx_buf_construct() local
224 memcpy(&acl_hdr, &msg[1], sizeof(acl_hdr)); in bt_spi_rx_buf_construct()
225 len = sizeof(acl_hdr) + sys_le16_to_cpu(acl_hdr.len); in bt_spi_rx_buf_construct()
Dhci_stm32wb0.c333 struct bt_hci_acl_hdr acl_hdr; in get_rx() local
336 memcpy(&acl_hdr, &msg[1], sizeof(acl_hdr)); in get_rx()
337 len = sizeof(acl_hdr) + sys_le16_to_cpu(acl_hdr.len); in get_rx()
Dhci_spi_st.c390 struct bt_hci_acl_hdr acl_hdr; in bt_spi_rx_buf_construct() local
464 memcpy(&acl_hdr, &msg[1], sizeof(acl_hdr)); in bt_spi_rx_buf_construct()
465 len = sizeof(acl_hdr) + sys_le16_to_cpu(acl_hdr.len); in bt_spi_rx_buf_construct()
/Zephyr-latest/subsys/usb/device/class/
Dbluetooth.c217 struct bt_hci_acl_hdr *acl_hdr; in hci_pkt_get_len() local
219 hdr_len = sizeof(*acl_hdr); in hci_pkt_get_len()
220 acl_hdr = (struct bt_hci_acl_hdr *)data; in hci_pkt_get_len()
221 len = sys_le16_to_cpu(acl_hdr->len) + hdr_len; in hci_pkt_get_len()
/Zephyr-latest/subsys/usb/device_next/class/
Dbt_hci.c289 struct bt_hci_acl_hdr *acl_hdr; in hci_pkt_get_len() local
291 hdr_len = sizeof(*acl_hdr); in hci_pkt_get_len()
292 acl_hdr = (struct bt_hci_acl_hdr *)data; in hci_pkt_get_len()
293 len = sys_le16_to_cpu(acl_hdr->len) + hdr_len; in hci_pkt_get_len()
/Zephyr-latest/doc/releases/
Drelease-notes-2.4.rst886 * bluetooth: hci_spi: Fixed cmd_hdr and acl_hdr usage.
1209 * :github:`27266` - samples: bluetooth: hci_spi: Invalid cmd_hdr and acl_hdr usage