Home
last modified time | relevance | path

Searched refs:p_tle (Results 1 – 25 of 31) sorted by relevance

12

/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/btu/
Dbtu_task.c120 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()
299 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)param; in btu_general_alarm_process() local
300 assert(p_tle != NULL); in btu_general_alarm_process()
302 switch (p_tle->event) { in btu_general_alarm_process()
304 btm_dev_timeout(p_tle); in btu_general_alarm_process()
[all …]
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/include/stack/
Dbtu.h55 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);
Dport_ext.h30 extern void rfcomm_process_timeout (TIMER_LIST_ENT *p_tle);
/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/sys/
Dbta_sys_main.c594 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 void bta_sys_stop_timer(TIMER_LIST_ENT *p_tle) in bta_sys_stop_timer() argument
[all …]
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/rfcomm/
Drfc_utils.c223 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-2.7.6/components/bt/host/bluedroid/bta/include/bta/
Dbta_sys.h225 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);
/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/hf_ag/
Dbta_ag_main.c396 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()
Dbta_ag_sco.c670 static void bta_ag_cn_timer_cback (TIMER_LIST_ENT *p_tle) in bta_ag_cn_timer_cback() argument
674 if (p_tle) in bta_ag_cn_timer_cback()
676 p_scb = (tBTA_AG_SCB *)p_tle->param; in bta_ag_cn_timer_cback()
/hal_espressif-2.7.6/components/bt/host/bluedroid/common/include/common/
Dbt_defs.h33 typedef void (TIMER_CBACK)(void *p_tle);
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/l2cap/
Dl2c_main.c942 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-2.7.6/components/bt/host/bluedroid/btc/profile/std/hid/include/
Dhidh_int.h72 extern void hidh_proc_repage_timeout (TIMER_LIST_ENT *p_tle);
/hal_espressif-2.7.6/components/bt/host/bluedroid/btc/profile/std/hid/
Dhidh_conn.c287 void hidh_proc_repage_timeout (TIMER_LIST_ENT *p_tle) in hidh_proc_repage_timeout() argument
289 hidh_conn_initiate( (UINT8) p_tle->param ) ; in hidh_proc_repage_timeout()
290 hh_cb.devices[p_tle->param].conn_tries++; in hidh_proc_repage_timeout()
291 hh_cb.callback( (UINT8) p_tle->param, hh_cb.devices[p_tle->param].addr, in hidh_proc_repage_timeout()
292 HID_HDEV_EVT_RETRYING, hh_cb.devices[p_tle->param].conn_tries, NULL ) ; in hidh_proc_repage_timeout()
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/avdt/
Davdt_api.c60 void avdt_process_timeout(TIMER_LIST_ENT *p_tle) in avdt_process_timeout() argument
65 switch (p_tle->event) { in avdt_process_timeout()
87 avdt_ccb_event((tAVDT_CCB *) p_tle->param, (UINT8) (event & ~AVDT_CCB_MKR), in avdt_process_timeout()
90 avdt_scb_event((tAVDT_SCB *) p_tle->param, event, NULL); in avdt_process_timeout()
/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/hf_client/
Dbta_hf_client_main.c314 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()
Dbta_hf_client_at.c139 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-2.7.6/components/bt/host/bluedroid/bta/dm/
Dbta_dm_pm.c45 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()
Dbta_dm_act.c88 static void bta_dm_search_timer_cback (TIMER_LIST_ENT *p_tle);
89 static void bta_dm_disable_conn_down_timer_cback (TIMER_LIST_ENT *p_tle);
137 static void bta_dm_delay_role_switch_cback(TIMER_LIST_ENT *p_tle);
139 static void bta_dm_disable_timer_cback(TIMER_LIST_ENT *p_tle);
619 static void bta_dm_disable_timer_cback (TIMER_LIST_ENT *p_tle) in bta_dm_disable_timer_cback() argument
621 UNUSED(p_tle); in bta_dm_disable_timer_cback()
627 APPL_TRACE_EVENT(" bta_dm_disable_timer_cback trial %d ", p_tle->param); in bta_dm_disable_timer_cback()
629 if (BTM_GetNumAclLinks() && p_tle->param == 0) { in bta_dm_disable_timer_cback()
2180 static void bta_dm_search_timer_cback (TIMER_LIST_ENT *p_tle) in bta_dm_search_timer_cback() argument
2182 UNUSED(p_tle); in bta_dm_search_timer_cback()
[all …]
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/btm/
Dbtm_devctl.c245 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()
Dbtm_sec.c68 static void btm_sec_collision_timeout (TIMER_LIST_ENT *p_tle);
70 static void btm_sec_pairing_timeout (TIMER_LIST_ENT *p_tle);
4201 static void btm_sec_connect_after_reject_timeout (TIMER_LIST_ENT *p_tle) in btm_sec_connect_after_reject_timeout() argument
4204 UNUSED(p_tle); in btm_sec_connect_after_reject_timeout()
4842 static void btm_sec_pairing_timeout (TIMER_LIST_ENT *p_tle) in btm_sec_pairing_timeout() argument
4854 UNUSED(p_tle); in btm_sec_pairing_timeout()
5550 static void btm_sec_collision_timeout (TIMER_LIST_ENT *p_tle) in btm_sec_collision_timeout() argument
5552 UNUSED(p_tle); in btm_sec_collision_timeout()
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/gatt/
Dgatt_utils.c1325 void gatt_rsp_timeout(TIMER_LIST_ENT *p_tle) in gatt_rsp_timeout() argument
1327 tGATT_CLCB *p_clcb = (tGATT_CLCB *)p_tle->param; in gatt_rsp_timeout()
1361 void gatt_ind_ack_timeout(TIMER_LIST_ENT *p_tle) in gatt_ind_ack_timeout() argument
1363 tGATT_TCB *p_tcb = (tGATT_TCB *)p_tle->param; in gatt_ind_ack_timeout()
1371 attp_send_cl_msg(((tGATT_TCB *)p_tle->param), 0, GATT_HANDLE_VALUE_CONF, NULL); in gatt_ind_ack_timeout()
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/gatt/include/
Dgatt_int.h615 extern void gatt_rsp_timeout(TIMER_LIST_ENT *p_tle);
616 extern void gatt_ind_ack_timeout(TIMER_LIST_ENT *p_tle);
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/btm/include/
Dbtm_int.h1074 void btm_qos_setup_timeout (void *p_tle);
1107 void btm_dev_timeout (TIMER_LIST_ENT *p_tle);
Dbtm_ble_int.h384 void btm_ble_timeout(TIMER_LIST_ENT *p_tle);
/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/av/
Dbta_av_main.c210 static void bta_av_timer_cback(void *p_tle) in bta_av_timer_cback() argument
213 TIMER_LIST_ENT *p = (TIMER_LIST_ENT *)p_tle; in bta_av_timer_cback()
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/smp/
Dsmp_utils.c390 void smp_rsp_timeout(TIMER_LIST_ENT *p_tle) in smp_rsp_timeout() argument
394 UNUSED(p_tle); in smp_rsp_timeout()

12