/Zephyr-latest/include/zephyr/bluetooth/ |
D | hci_raw.h | 128 int bt_enable_raw(struct k_fifo *rx_queue);
|
D | l2cap.h | 241 struct k_fifo rx_queue; member
|
/Zephyr-latest/drivers/ieee802154/ |
D | ieee802154_cc13xx_cc26xx_subg.h | 46 dataQueue_t rx_queue; member
|
D | ieee802154_cc13xx_cc26xx.h | 72 dataQueue_t rx_queue; member
|
D | ieee802154_cc13xx_cc26xx.c | 555 drv_data->rx_queue.pCurrEntry = (uint8_t *)&drv_data->rx_entry[0]; in ieee802154_cc13xx_cc26xx_data_init() 556 drv_data->rx_queue.pLastEntry = NULL; in ieee802154_cc13xx_cc26xx_data_init() 665 .pRxQ = &ieee802154_cc13xx_cc26xx_data.rx_queue,
|
D | ieee802154_cc13xx_cc26xx_subg.c | 862 drv_data->rx_queue.pCurrEntry = (uint8_t *)&drv_data->rx_entry[0]; in drv_setup_rx_buffers() 863 drv_data->rx_queue.pLastEntry = NULL; in drv_setup_rx_buffers() 1007 .pQueue = &ieee802154_cc13xx_cc26xx_subg_data.rx_queue,
|
/Zephyr-latest/samples/bluetooth/hci_uart_3wire/src/ |
D | main.c | 96 struct k_fifo rx_queue; member 407 k_fifo_put(&h5.rx_queue, buf); in h5_process_complete_packet() 691 buf = k_fifo_get(&h5.rx_queue, K_FOREVER); in rx_thread() 772 static K_FIFO_DEFINE(rx_queue); in main() 779 bt_enable_raw(&rx_queue); in main() 790 k_fifo_init(&h5.rx_queue); in main() 810 buf = k_fifo_get(&rx_queue, K_FOREVER); in main()
|
/Zephyr-latest/samples/bluetooth/hci_spi/src/ |
D | main.c | 285 static K_FIFO_DEFINE(rx_queue); in main() 293 err = bt_enable_raw(&rx_queue); in main() 320 buf = k_fifo_get(&rx_queue, K_FOREVER); in main()
|
/Zephyr-latest/subsys/usb/device/class/ |
D | bluetooth.c | 30 static K_FIFO_DEFINE(rx_queue); 191 buf = k_fifo_get(&rx_queue, K_FOREVER); in hci_rx_thread() 299 k_fifo_put(&rx_queue, buf); in acl_read_cb() 433 k_fifo_put(&rx_queue, buf); in bluetooth_class_handler()
|
/Zephyr-latest/samples/bluetooth/hci_uart/src/ |
D | main.c | 362 static K_FIFO_DEFINE(rx_queue); in main() 369 bt_enable_raw(&rx_queue); in main() 408 buf = k_fifo_get(&rx_queue, K_FOREVER); in main()
|
/Zephyr-latest/samples/net/wpan_serial/src/ |
D | main.c | 45 static struct k_fifo rx_queue; variable 164 k_fifo_put(&rx_queue, pkt_curr); in interrupt_handler() 315 pkt = k_fifo_get(&rx_queue, K_FOREVER); in rx_thread() 428 k_fifo_init(&rx_queue); in init_rx_queue()
|
/Zephyr-latest/samples/bluetooth/hci_ipc/src/ |
D | main.c | 395 static K_FIFO_DEFINE(rx_queue); in main() 400 bt_enable_raw(&rx_queue); in main() 426 buf = k_fifo_get(&rx_queue, K_FOREVER); in main()
|
/Zephyr-latest/samples/boards/st/bluetooth/interactive_gui/src/ |
D | main.c | 436 static K_FIFO_DEFINE(rx_queue); in main() 443 bt_enable_raw(&rx_queue); in main() 453 buf = k_fifo_get(&rx_queue, K_FOREVER); in main()
|
/Zephyr-latest/drivers/audio/ |
D | dmic_mcux.c | 39 struct k_msgq *rx_queue; member 190 k_msgq_purge(drv_data->rx_queue); in dmic_mcux_stop() 245 ret = k_msgq_put(drv_data->rx_queue, &done_buffer, K_NO_WAIT); in dmic_mcux_dma_cb() 645 ret = k_msgq_get(drv_data->rx_queue, buffer, SYS_TIMEOUT_MS(timeout)); in dmic_mcux_read() 708 .rx_queue = &dmic_msgq##idx, \
|
D | dmic_nrfx_pdm.c | 33 struct k_msgq rx_queue; member 140 ret = k_msgq_put(&drv_data->rx_queue, in event_handler() 615 ret = k_msgq_get(&drv_data->rx_queue, buffer, SYS_TIMEOUT_MS(timeout)); in dmic_nrfx_pdm_read() 674 k_msgq_init(&dmic_nrfx_pdm_data##idx.rx_queue, \
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | hci_raw.c | 353 int bt_enable_raw(struct k_fifo *rx_queue) in bt_enable_raw() argument 359 raw_rx = rx_queue; in bt_enable_raw()
|
/Zephyr-latest/drivers/i2s/ |
D | i2s_nrfx.c | 34 struct k_msgq rx_queue; member 314 int ret = k_msgq_put(&drv_data->rx_queue, in data_handler() 410 while (k_msgq_get(&drv_data->rx_queue, in purge_queue() 585 ret = k_msgq_get(&drv_data->rx_queue, in i2s_nrfx_read() 968 k_msgq_init(&i2s_nrfx_data##idx.rx_queue, \
|
/Zephyr-latest/drivers/bluetooth/hci/ |
D | h5.c | 93 struct k_fifo rx_queue; member 411 k_fifo_put(&h5->rx_queue, buf); in h5_process_complete_packet() 692 buf = k_fifo_get(&h5->rx_queue, K_FOREVER); in rx_thread() 761 k_fifo_init(&h5->rx_queue); in h5_init()
|
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/reassembly/peer/src/ |
D | peer.c | 46 static K_FIFO_DEFINE(rx_queue); 333 buf = k_fifo_get(&rx_queue, K_FOREVER); in rx_thread() 508 bt_enable_raw(&rx_queue); in init_tinyhost()
|
/Zephyr-latest/tests/bsim/bluetooth/host/misc/disconnect/tester/src/ |
D | main.c | 48 static K_FIFO_DEFINE(rx_queue); 346 buf = k_fifo_get(&rx_queue, K_FOREVER); in rx_thread() 534 bt_enable_raw(&rx_queue); in init_tinyhost()
|
/Zephyr-latest/tests/bsim/bluetooth/host/att/sequential/tester/src/ |
D | main.c | 51 static K_FIFO_DEFINE(rx_queue); 369 buf = k_fifo_get(&rx_queue, K_FOREVER); in rx_thread() 588 bt_enable_raw(&rx_queue); in init_tinyhost()
|
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/split/tester/src/ |
D | main.c | 37 static K_FIFO_DEFINE(rx_queue); 349 buf = k_fifo_get(&rx_queue, K_FOREVER); in rx_thread() 598 bt_enable_raw(&rx_queue); in test_procedure_0()
|
/Zephyr-latest/tests/bsim/bluetooth/host/att/pipeline/tester/src/ |
D | main.c | 56 static K_FIFO_DEFINE(rx_queue); 392 buf = k_fifo_get(&rx_queue, K_FOREVER); in rx_thread() 582 bt_enable_raw(&rx_queue); in init_tinyhost()
|
/Zephyr-latest/tests/bsim/bluetooth/host/misc/hfc_multilink/tester/src/ |
D | tester.c | 39 static K_FIFO_DEFINE(rx_queue); 360 buf = k_fifo_get(&rx_queue, K_FOREVER); in rx_thread() 625 bt_enable_raw(&rx_queue); in entrypoint_tester()
|
/Zephyr-latest/tests/bsim/bluetooth/ll/edtt/hci_test_app/src/ |
D | main.c | 197 static K_FIFO_DEFINE(rx_queue); 309 buf = k_fifo_get(&rx_queue, K_FOREVER); in service_events() 773 err = bt_enable_raw(&rx_queue); in main()
|