/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/btu/ |
D | btu_task.c | 120 typedef void (tUSER_TIMEOUT_FUNC) (TIMER_LIST_ENT *p_tle); 203 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)param; in btu_bta_alarm_process() local 205 if (p_tle->p_cback) { in btu_bta_alarm_process() 206 (*p_tle->p_cback)(p_tle); in btu_bta_alarm_process() 207 } else if (p_tle->event) { in btu_bta_alarm_process() 210 p_msg->event = p_tle->event; in btu_bta_alarm_process() 311 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)param; in btu_general_alarm_process() local 312 assert(p_tle != NULL); in btu_general_alarm_process() 314 switch (p_tle->event) { in btu_general_alarm_process() 316 btm_dev_timeout(p_tle); in btu_general_alarm_process() [all …]
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/include/stack/ |
D | btu.h | 55 typedef void (*tBTU_TIMER_CALLBACK)(TIMER_LIST_ENT *p_tle); 206 TIMER_LIST_ENT *p_tle; /* timer entry */ member 250 void btu_start_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout); 251 void btu_stop_timer (TIMER_LIST_ENT *p_tle); 252 void btu_free_timer (TIMER_LIST_ENT *p_tle); 253 void btu_start_timer_oneshot(TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout); 254 void btu_stop_timer_oneshot(TIMER_LIST_ENT *p_tle); 262 void btu_start_quick_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout); 263 void btu_stop_quick_timer (TIMER_LIST_ENT *p_tle); 264 void btu_free_quick_timer (TIMER_LIST_ENT *p_tle);
|
D | port_ext.h | 30 extern void rfcomm_process_timeout (TIMER_LIST_ENT *p_tle);
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/bta/sys/ |
D | bta_sys_main.c | 594 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)data; in bta_alarm_cb() local 596 btu_task_post(SIG_BTU_BTA_ALARM, p_tle, OSI_THREAD_MAX_TIMEOUT); in bta_alarm_cb() 599 void bta_sys_start_timer(TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout_ms) in bta_sys_start_timer() argument 601 assert(p_tle != NULL); in bta_sys_start_timer() 605 if (!hash_map_has_key(bta_alarm_hash_map, p_tle)) { in bta_sys_start_timer() 606 hash_map_set(bta_alarm_hash_map, p_tle, osi_alarm_new("bta_sys", bta_alarm_cb, p_tle, 0)); in bta_sys_start_timer() 610 osi_alarm_t *alarm = hash_map_get(bta_alarm_hash_map, p_tle); in bta_sys_start_timer() 616 p_tle->event = type; in bta_sys_start_timer() 617 p_tle->ticks = timeout_ms; in bta_sys_start_timer() 650 BOOLEAN bta_sys_timer_is_active(TIMER_LIST_ENT *p_tle) in bta_sys_timer_is_active() argument [all …]
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/rfcomm/ |
D | rfc_utils.c | 223 TIMER_LIST_ENT *p_tle = &p_mcb->tle; in rfc_timer_start() local 227 p_tle->param = (UINT32)p_mcb; in rfc_timer_start() 229 btu_start_timer (p_tle, BTU_TTYPE_RFCOMM_MFC, timeout); in rfc_timer_start() 270 TIMER_LIST_ENT *p_tle = &p_port->rfc.tle; in rfc_port_timer_start() local 274 p_tle->param = (UINT32)p_port; in rfc_port_timer_start() 276 btu_start_timer (p_tle, BTU_TTYPE_RFCOMM_PORT, timeout); in rfc_port_timer_start() 348 void rfcomm_process_timeout (TIMER_LIST_ENT *p_tle) in rfcomm_process_timeout() argument 350 switch (p_tle->event) { in rfcomm_process_timeout() 352 rfc_mx_sm_execute ((tRFC_MCB *)p_tle->param, RFC_EVENT_TIMEOUT, NULL); in rfcomm_process_timeout() 356 rfc_port_sm_execute ((tPORT *)p_tle->param, RFC_EVENT_TIMEOUT, NULL); in rfcomm_process_timeout()
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/bta/include/bta/ |
D | bta_sys.h | 225 extern void bta_sys_start_timer(TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout_ms); 226 extern void bta_sys_stop_timer(TIMER_LIST_ENT *p_tle); 227 extern void bta_sys_free_timer(TIMER_LIST_ENT *p_tle); 228 extern BOOLEAN bta_sys_timer_is_active(TIMER_LIST_ENT *p_tle);
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/bta/hf_ag/ |
D | bta_ag_main.c | 396 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *) p; in bta_ag_timer_cback() local 399 p_buf->event = p_tle->event; in bta_ag_timer_cback() 400 p_buf->layer_specific = bta_ag_scb_to_idx((tBTA_AG_SCB *) p_tle->param); in bta_ag_timer_cback() 653 static void bta_ag_colli_timer_cback (TIMER_LIST_ENT *p_tle) in bta_ag_colli_timer_cback() argument 658 if (p_tle) { in bta_ag_colli_timer_cback() 659 p_scb = (tBTA_AG_SCB *)p_tle->param; in bta_ag_colli_timer_cback()
|
D | bta_ag_sco.c | 708 static void bta_ag_cn_timer_cback (TIMER_LIST_ENT *p_tle) in bta_ag_cn_timer_cback() argument 712 if (p_tle) in bta_ag_cn_timer_cback() 714 p_scb = (tBTA_AG_SCB *)p_tle->param; in bta_ag_cn_timer_cback()
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/common/include/common/ |
D | bt_defs.h | 25 typedef void (TIMER_CBACK)(void *p_tle);
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/l2cap/ |
D | l2c_main.c | 942 void l2c_process_timeout (TIMER_LIST_ENT *p_tle) in l2c_process_timeout() argument 945 switch (p_tle->event) { in l2c_process_timeout() 947 l2c_link_timeout ((tL2C_LCB *)p_tle->param); in l2c_process_timeout() 951 l2c_csm_execute (((tL2C_CCB *)p_tle->param), L2CEVT_TIMEOUT, NULL); in l2c_process_timeout() 955 l2c_csm_execute (((tL2C_CCB *)p_tle->param), L2CEVT_ACK_TIMEOUT, NULL); in l2c_process_timeout() 964 l2c_info_timeout((tL2C_LCB *)p_tle->param); in l2c_process_timeout() 969 tL2C_LCB *p_lcb = (tL2C_LCB *)p_tle->param; in l2c_process_timeout()
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/hid/ |
D | hidh_conn.c | 289 void hidh_proc_repage_timeout (TIMER_LIST_ENT *p_tle) in hidh_proc_repage_timeout() argument 291 hidh_conn_initiate( (UINT8) p_tle->param ) ; in hidh_proc_repage_timeout() 292 hh_cb.devices[p_tle->param].conn_tries++; in hidh_proc_repage_timeout() 293 hh_cb.callback( (UINT8) p_tle->param, hh_cb.devices[p_tle->param].addr, in hidh_proc_repage_timeout() 294 HID_HDEV_EVT_RETRYING, hh_cb.devices[p_tle->param].conn_tries, NULL ) ; in hidh_proc_repage_timeout()
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/hid/include/ |
D | hid_int.h | 69 extern void hidh_proc_repage_timeout (TIMER_LIST_ENT *p_tle);
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/avdt/ |
D | avdt_api.c | 60 void avdt_process_timeout(TIMER_LIST_ENT *p_tle) in avdt_process_timeout() argument 65 switch (p_tle->event) { in avdt_process_timeout() 90 avdt_ccb_event((tAVDT_CCB *) p_tle->param, (UINT8) (event & ~AVDT_CCB_MKR), in avdt_process_timeout() 93 avdt_scb_event((tAVDT_SCB *) p_tle->param, event, NULL); in avdt_process_timeout()
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/bta/hf_client/ |
D | bta_hf_client_main.c | 314 static void bta_hf_client_colli_timer_cback (TIMER_LIST_ENT *p_tle) in bta_hf_client_colli_timer_cback() argument 318 if (p_tle) { in bta_hf_client_colli_timer_cback()
|
D | bta_hf_client_at.c | 139 static void bta_hf_client_at_resp_timer_cback (TIMER_LIST_ENT *p_tle) in bta_hf_client_at_resp_timer_cback() argument 141 if (p_tle) { in bta_hf_client_at_resp_timer_cback() 220 static void bta_hf_client_at_hold_timer_cback(TIMER_LIST_ENT *p_tle) in bta_hf_client_at_hold_timer_cback() argument 224 if (p_tle) { in bta_hf_client_at_hold_timer_cback()
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/bta/dm/ |
D | bta_dm_pm.c | 45 static void bta_dm_pm_timer_cback(void *p_tle); 843 static void bta_dm_pm_timer_cback(void *p_tle) in bta_dm_pm_timer_cback() argument 851 if (&bta_dm_cb.pm_timer[i].timer[j] == (TIMER_LIST_ENT *) p_tle) { in bta_dm_pm_timer_cback()
|
D | bta_dm_act.c | 89 static void bta_dm_search_timer_cback (TIMER_LIST_ENT *p_tle); 90 static void bta_dm_disable_conn_down_timer_cback (TIMER_LIST_ENT *p_tle); 138 static void bta_dm_delay_role_switch_cback(TIMER_LIST_ENT *p_tle); 140 static void bta_dm_disable_timer_cback(TIMER_LIST_ENT *p_tle); 621 static void bta_dm_disable_timer_cback (TIMER_LIST_ENT *p_tle) in bta_dm_disable_timer_cback() argument 623 UNUSED(p_tle); in bta_dm_disable_timer_cback() 629 APPL_TRACE_EVENT(" bta_dm_disable_timer_cback trial %d ", p_tle->param); in bta_dm_disable_timer_cback() 631 if (BTM_GetNumAclLinks() && p_tle->param == 0) { in bta_dm_disable_timer_cback() 2227 static void bta_dm_search_timer_cback (TIMER_LIST_ENT *p_tle) in bta_dm_search_timer_cback() argument 2229 UNUSED(p_tle); in bta_dm_search_timer_cback() [all …]
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/btm/ |
D | btm_devctl.c | 245 void btm_dev_timeout (TIMER_LIST_ENT *p_tle) in btm_dev_timeout() argument 247 TIMER_PARAM_TYPE timer_type = (TIMER_PARAM_TYPE)p_tle->param; in btm_dev_timeout()
|
D | btm_sec.c | 68 static void btm_sec_collision_timeout (TIMER_LIST_ENT *p_tle); 70 static void btm_sec_pairing_timeout (TIMER_LIST_ENT *p_tle); 4225 static void btm_sec_connect_after_reject_timeout (TIMER_LIST_ENT *p_tle) in btm_sec_connect_after_reject_timeout() argument 4228 UNUSED(p_tle); in btm_sec_connect_after_reject_timeout() 4884 static void btm_sec_pairing_timeout (TIMER_LIST_ENT *p_tle) in btm_sec_pairing_timeout() argument 4896 UNUSED(p_tle); in btm_sec_pairing_timeout() 5608 static void btm_sec_collision_timeout (TIMER_LIST_ENT *p_tle) in btm_sec_collision_timeout() argument 5610 UNUSED(p_tle); in btm_sec_collision_timeout()
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/gatt/ |
D | gatt_utils.c | 1349 void gatt_rsp_timeout(TIMER_LIST_ENT *p_tle) in gatt_rsp_timeout() argument 1351 tGATT_CLCB *p_clcb = (tGATT_CLCB *)p_tle->param; in gatt_rsp_timeout() 1385 void gatt_ind_ack_timeout(TIMER_LIST_ENT *p_tle) in gatt_ind_ack_timeout() argument 1387 tGATT_TCB *p_tcb = (tGATT_TCB *)p_tle->param; in gatt_ind_ack_timeout() 1395 attp_send_cl_msg(((tGATT_TCB *)p_tle->param), 0, GATT_HANDLE_VALUE_CONF, NULL); in gatt_ind_ack_timeout()
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/gatt/include/ |
D | gatt_int.h | 632 extern void gatt_rsp_timeout(TIMER_LIST_ENT *p_tle); 633 extern void gatt_ind_ack_timeout(TIMER_LIST_ENT *p_tle);
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/bta/av/ |
D | bta_av_main.c | 214 static void bta_av_timer_cback(void *p_tle) in bta_av_timer_cback() argument 217 TIMER_LIST_ENT *p = (TIMER_LIST_ENT *)p_tle; in bta_av_timer_cback()
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/btm/include/ |
D | btm_int.h | 1080 void btm_qos_setup_timeout (void *p_tle); 1113 void btm_dev_timeout (TIMER_LIST_ENT *p_tle);
|
D | btm_ble_int.h | 383 void btm_ble_timeout(TIMER_LIST_ENT *p_tle);
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/smp/ |
D | smp_utils.c | 390 void smp_rsp_timeout(TIMER_LIST_ENT *p_tle) in smp_rsp_timeout() argument 394 UNUSED(p_tle); in smp_rsp_timeout()
|