Home
last modified time | relevance | path

Searched refs:tx_thread (Results 1 – 15 of 15) sorted by relevance

/Zephyr-latest/samples/bluetooth/cap_initiator/src/
Dcap_initiator_tx.c135 static struct k_thread tx_thread; in cap_initiator_tx_init() local
137 k_thread_create(&tx_thread, tx_thread_stack, K_KERNEL_STACK_SIZEOF(tx_thread_stack), in cap_initiator_tx_init()
139 k_thread_name_set(&tx_thread, "TX thread"); in cap_initiator_tx_init()
/Zephyr-latest/samples/bluetooth/bap_unicast_client/src/
Dstream_tx.c169 static struct k_thread tx_thread; in stream_tx_init() local
171 k_thread_create(&tx_thread, tx_thread_stack, K_KERNEL_STACK_SIZEOF(tx_thread_stack), in stream_tx_init()
173 k_thread_name_set(&tx_thread, "TX thread"); in stream_tx_init()
/Zephyr-latest/tests/bsim/bluetooth/audio/src/
Dbap_stream_tx.c176 static struct k_thread tx_thread; in bap_stream_tx_init() local
178 k_thread_create(&tx_thread, tx_thread_stack, K_KERNEL_STACK_SIZEOF(tx_thread_stack), in bap_stream_tx_init()
180 k_thread_name_set(&tx_thread, "TX thread"); in bap_stream_tx_init()
/Zephyr-latest/tests/bluetooth/tester/src/audio/
Dbtp_bap_audio_stream.c187 static struct k_thread tx_thread; in btp_bap_audio_stream_tx_init() local
189 k_thread_create(&tx_thread, tx_thread_stack, K_KERNEL_STACK_SIZEOF(tx_thread_stack), in btp_bap_audio_stream_tx_init()
191 k_thread_name_set(&tx_thread, "TX thread"); in btp_bap_audio_stream_tx_init()
/Zephyr-latest/include/zephyr/bluetooth/classic/
Drfcomm.h105 struct k_thread tx_thread; member
/Zephyr-latest/samples/bluetooth/cap_acceptor/src/
Dcap_acceptor_unicast.c449 static struct k_thread tx_thread; in init_cap_acceptor_unicast() local
451 k_thread_create(&tx_thread, tx_thread_stack, in init_cap_acceptor_unicast()
454 k_thread_name_set(&tx_thread, "TX thread"); in init_cap_acceptor_unicast()
/Zephyr-latest/drivers/bluetooth/hci/
Dh5.c130 struct k_thread *tx_thread; member
627 static void tx_thread(void *p1, void *p2, void *p3) in tx_thread() function
755 tid = k_thread_create(cfg->tx_thread, cfg->tx_stack, cfg->tx_stack_size, in h5_init()
756 tx_thread, (void *)dev, NULL, NULL, in h5_init()
821 .tx_thread = &tx_thread_##inst, \
/Zephyr-latest/samples/bluetooth/hci_uart/src/
Dmain.c251 static void tx_thread(void *p1, void *p2, void *p3) in tx_thread() function
401 K_THREAD_STACK_SIZEOF(tx_thread_stack), tx_thread, in main()
/Zephyr-latest/samples/bluetooth/hci_ipc/src/
Dmain.c201 static void tx_thread(void *p1, void *p2, void *p3) in tx_thread() function
403 K_THREAD_STACK_SIZEOF(tx_thread_stack), tx_thread, in main()
/Zephyr-latest/samples/boards/st/bluetooth/interactive_gui/src/
Dmain.c376 static void tx_thread(void *p1, void *p2, void *p3) in tx_thread() function
446 K_THREAD_STACK_SIZEOF(tx_thread_stack), tx_thread, in main()
/Zephyr-latest/samples/net/wpan_serial/src/
Dmain.c393 static void tx_thread(void *p1, void *p2, void *p3) in tx_thread() function
442 tx_thread, in init_tx_queue()
/Zephyr-latest/drivers/can/
Dcan_loopback.c62 static void tx_thread(void *arg1, void *arg2, void *arg3) in tx_thread() function
432 tx_thread, (void *)dev, NULL, NULL, in can_loopback_init()
/Zephyr-latest/samples/bluetooth/hci_uart_3wire/src/
Dmain.c638 static void tx_thread(void *p1, void *p2, void *p3) in tx_thread() function
785 tx_thread, NULL, NULL, NULL, in main()
/Zephyr-latest/samples/net/sockets/txtime/src/
Dmain.c56 static struct k_thread tx_thread; variable
629 tx_tid = k_thread_create(&tx_thread, tx_stack, in main()
/Zephyr-latest/subsys/bluetooth/host/classic/
Drfcomm.c798 k_thread_create(&dlc->tx_thread, dlc->stack, in rfcomm_dlc_connected()
802 k_thread_name_set(&dlc->tx_thread, "BT DLC"); in rfcomm_dlc_connected()