Home
last modified time | relevance | path

Searched refs:osi_thread_post (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/stack/btu/
Dbtu_task.c225 status = osi_thread_post(btu_thread, btu_task_start_up, param, 0, timeout); in btu_task_post()
228 status = osi_thread_post(btu_thread, btu_hci_msg_process, param, 0, timeout); in btu_task_post()
244 status = osi_thread_post(btu_thread, bta_sys_event, param, 0, timeout); in btu_task_post()
247 status = osi_thread_post(btu_thread, btu_bta_alarm_process, param, 0, timeout); in btu_task_post()
252 status = osi_thread_post(btu_thread, btu_general_alarm_process, param, 0, timeout); in btu_task_post()
255 status = osi_thread_post(btu_thread, btu_l2cap_alarm_process, param, 0, timeout); in btu_task_post()
/hal_espressif-latest/components/bt/common/osi/include/osi/
Dthread.h61 bool osi_thread_post(osi_thread_t *thread, osi_thread_func_t func, void *context, int queue_idx, ui…
/hal_espressif-latest/components/bt/common/osi/
Dthread.c330 bool osi_thread_post(osi_thread_t *thread, osi_thread_func_t func, void *context, int queue_idx, ui… in osi_thread_post() function
442 …ret = osi_thread_post(event->thread, osi_thread_generic_event_handler, event, event->queue_idx, ti… in osi_thread_post_event()
/hal_espressif-latest/components/bt/common/btc/core/
Dbtc_task.c218 if (osi_thread_post(btc_thread, btc_thread_handler, msg, 0, timeout) == false) { in btc_task_post()