Lines Matching refs:hci_buffer
374 uint8_t *hci_buffer = buf->data; in bt_hci_stm32wb0_send() local
386 connection_handle = ((hci_buffer[1] & 0x0F) << 8) + hci_buffer[0]; in bt_hci_stm32wb0_send()
387 data_len = (hci_buffer[3] << 8) + hci_buffer[2]; in bt_hci_stm32wb0_send()
388 pdu = hci_buffer + 4; in bt_hci_stm32wb0_send()
389 pb_flag = (hci_buffer[1] >> 4) & 0x3; in bt_hci_stm32wb0_send()
390 bc_flag = (hci_buffer[1] >> 6) & 0x3; in bt_hci_stm32wb0_send()
402 connection_handle = sys_get_le16(hci_buffer) & 0x0FFF; in bt_hci_stm32wb0_send()
403 iso_data_load_len = sys_get_le16(hci_buffer + 2) & 0x3FFF; in bt_hci_stm32wb0_send()
404 pb_flag = (hci_buffer[1] >> 4) & 0x3; in bt_hci_stm32wb0_send()
405 ts_flag = (hci_buffer[1] >> 6) & 0x1; in bt_hci_stm32wb0_send()
406 iso_data_load = &hci_buffer[4]; in bt_hci_stm32wb0_send()
413 process_command(hci_buffer, buf->len, buffer_out_mem, sizeof(buffer_out_mem)); in bt_hci_stm32wb0_send()