Searched refs:acl_hdr (Results 1 – 8 of 8) sorted by relevance
/Zephyr-latest/samples/bluetooth/hci_spi/src/ |
D | main.c | 172 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/ |
D | ipm_stm32wb.c | 174 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()
|
D | spi.c | 186 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()
|
D | hci_stm32wb0.c | 333 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()
|
D | hci_spi_st.c | 390 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/ |
D | bluetooth.c | 217 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/ |
D | bt_hci.c | 289 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/ |
D | release-notes-2.4.rst | 886 * bluetooth: hci_spi: Fixed cmd_hdr and acl_hdr usage. 1209 * :github:`27266` - samples: bluetooth: hci_spi: Invalid cmd_hdr and acl_hdr usage
|