Home
last modified time | relevance | path

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

/aosp12/system/nfc/src/gki/common/
H A Dgki_time.cc647 while ((p_tle) && (p_tle->ticks <= 0)) { in GKI_update_timer_list()
649 p_tle = p_tle->p_next; in GKI_update_timer_list()
670 p_tle = p_tle->p_next; in GKI_update_timer_list()
710 while ((p_tle) && (p_tle != p_target_tle)) { in GKI_get_remaining_ticks()
712 p_tle = p_tle->p_next; in GKI_get_remaining_ticks()
852 p_tle->p_next->ticks += p_tle->ticks; in GKI_remove_from_timer_list()
871 if (p_tle->p_next != nullptr && p_tle->p_next->p_prev == p_tle) in GKI_remove_from_timer_list()
872 p_tle->p_next->p_prev = p_tle->p_prev; in GKI_remove_from_timer_list()
878 if (p_tle->p_prev != nullptr && p_tle->p_prev->p_next == p_tle) in GKI_remove_from_timer_list()
879 p_tle->p_prev->p_next = p_tle->p_next; in GKI_remove_from_timer_list()
[all …]
H A Dgki.h298 typedef void(TIMER_CBACK)(TIMER_LIST_ENT* p_tle);
/aosp12/system/nfc/src/nfc/nfc/
H A Dnfc_task.cc81 p_tle->event = type; in nfc_start_timer()
110 TIMER_LIST_ENT* p_tle; in nfc_process_timer_evt() local
115 p_tle = nfc_cb.timer_queue.p_first; in nfc_process_timer_evt()
118 switch (p_tle->event) { in nfc_process_timer_evt()
132 p_tle, p_tle->event); in nfc_process_timer_evt()
135 p_tle->event); in nfc_process_timer_evt()
200 p_tle->event = type; in nfc_start_quick_timer()
234 TIMER_LIST_ENT* p_tle; in nfc_process_quick_timer_evt() local
243 switch (p_tle->event) { in nfc_process_quick_timer_evt()
249 llcp_process_timeout(p_tle); in nfc_process_quick_timer_evt()
[all …]
/aosp12/system/nfc/src/nfa/sys/
H A Dnfa_sys_ptim.cc63 TIMER_LIST_ENT* p_tle; in nfa_sys_ptim_timer_update() local
91 p_tle = p_cb->timer_queue.p_first; in nfa_sys_ptim_timer_update()
97 if (p_tle->p_cback) { in nfa_sys_ptim_timer_update()
98 (*p_tle->p_cback)(p_tle); in nfa_sys_ptim_timer_update()
99 } else if (p_tle->event) { in nfa_sys_ptim_timer_update()
102 p_msg->event = p_tle->event; in nfa_sys_ptim_timer_update()
138 GKI_remove_from_timer_list(&p_cb->timer_queue, p_tle); in nfa_sys_ptim_start_timer()
140 p_tle->event = type; in nfa_sys_ptim_start_timer()
141 p_tle->ticks = timeout; in nfa_sys_ptim_start_timer()
143 GKI_add_to_timer_list(&p_cb->timer_queue, p_tle); in nfa_sys_ptim_start_timer()
[all …]
H A Dnfa_sys_main.cc343 void nfa_sys_start_timer(TIMER_LIST_ENT* p_tle, uint16_t type, in nfa_sys_start_timer() argument
345 nfa_sys_ptim_start_timer(&nfa_sys_cb.ptim_cb, p_tle, type, timeout); in nfa_sys_start_timer()
357 void nfa_sys_stop_timer(TIMER_LIST_ENT* p_tle) { in nfa_sys_stop_timer() argument
358 nfa_sys_ptim_stop_timer(&nfa_sys_cb.ptim_cb, p_tle); in nfa_sys_stop_timer()
/aosp12/system/nfc/src/nfc/llcp/
H A Dllcp_main.cc148 void llcp_process_timeout(TIMER_LIST_ENT* p_tle) { in llcp_process_timeout() argument
152 << StringPrintf("llcp_process_timeout: event=%d", p_tle->event); in llcp_process_timeout()
154 switch (p_tle->event) { in llcp_process_timeout()
167 llcp_dlsm_execute((tLLCP_DLCB*)(p_tle->param), LLCP_DLC_EVENT_TIMEOUT, in llcp_process_timeout()
/aosp12/system/nfc/src/nfc/include/
H A Dnfc_int.h315 void nfc_start_timer(TIMER_LIST_ENT* p_tle, uint16_t type, uint32_t timeout);
316 uint32_t nfc_remaining_time(TIMER_LIST_ENT* p_tle);
317 void nfc_stop_timer(TIMER_LIST_ENT* p_tle);
319 void nfc_start_quick_timer(TIMER_LIST_ENT* p_tle, uint16_t type,
321 void nfc_stop_quick_timer(TIMER_LIST_ENT* p_tle);
H A Drw_int.h877 extern void rw_t1t_process_timeout(TIMER_LIST_ENT* p_tle);
895 extern void rw_t3t_process_timeout(TIMER_LIST_ENT* p_tle);
903 extern void rw_t4t_process_timeout(TIMER_LIST_ENT* p_tle);
906 extern void rw_i93_process_timeout(TIMER_LIST_ENT* p_tle);
916 extern void rw_mfc_process_timeout(TIMER_LIST_ENT* p_tle);
H A Dce_int.h166 extern void ce_t4t_process_timeout(TIMER_LIST_ENT* p_tle);
H A Dllcp_int.h296 void llcp_process_timeout(TIMER_LIST_ENT* p_tle);
/aosp12/system/nfc/src/nfa/include/
H A Dnfa_sys_ptim.h77 extern void nfa_sys_ptim_start_timer(tPTIM_CB* p_cb, TIMER_LIST_ENT* p_tle,
89 extern void nfa_sys_ptim_stop_timer(tPTIM_CB* p_cb, TIMER_LIST_ENT* p_tle);
H A Dnfa_sys.h111 extern void nfa_sys_start_timer(TIMER_LIST_ENT* p_tle, uint16_t type,
113 extern void nfa_sys_stop_timer(TIMER_LIST_ENT* p_tle);
/aosp12/system/nfc/src/nfc/tags/
H A Dce_t4t.cc519 void ce_t4t_process_timeout(TIMER_LIST_ENT* p_tle) { in ce_t4t_process_timeout() argument
523 DLOG_IF(INFO, nfc_debug_enabled) << StringPrintf("event=%d", p_tle->event); in ce_t4t_process_timeout()
525 if (p_tle->event == NFC_TTYPE_CE_T4T_UPDATE) { in ce_t4t_process_timeout()
535 LOG(ERROR) << StringPrintf("unknown event=%d", p_tle->event); in ce_t4t_process_timeout()
H A Drw_mfc.cc611 void rw_mfc_process_timeout(TIMER_LIST_ENT* p_tle) { in rw_mfc_process_timeout() argument
612 DLOG_IF(INFO, nfc_debug_enabled) << __func__ << " event=" << p_tle->event; in rw_mfc_process_timeout()
614 if (p_tle->event == NFC_TTYPE_RW_MFC_RESPONSE) { in rw_mfc_process_timeout()
617 LOG(ERROR) << __func__ << " unknown event=" << p_tle->event; in rw_mfc_process_timeout()
H A Drw_t4t.cc2191 void rw_t4t_process_timeout(TIMER_LIST_ENT* p_tle) { in rw_t4t_process_timeout() argument
2192 DLOG_IF(INFO, nfc_debug_enabled) << StringPrintf("event=%d", p_tle->event); in rw_t4t_process_timeout()
2194 if (p_tle->event == NFC_TTYPE_RW_T4T_RESPONSE) { in rw_t4t_process_timeout()
2197 LOG(ERROR) << StringPrintf("unknown event=%d", p_tle->event); in rw_t4t_process_timeout()
H A Drw_i93.cc3165 void rw_i93_process_timeout(TIMER_LIST_ENT* p_tle) { in rw_i93_process_timeout() argument
3169 << StringPrintf("%s - event=%d", __func__, p_tle->event); in rw_i93_process_timeout()
3171 if (p_tle->event == NFC_TTYPE_RW_I93_RESPONSE) { in rw_i93_process_timeout()
3195 LOG(ERROR) << StringPrintf("%s - unknown event=%d", __func__, p_tle->event); in rw_i93_process_timeout()
H A Drw_t1t.cc528 void rw_t1t_process_timeout(__attribute__((unused)) TIMER_LIST_ENT* p_tle) { in rw_t1t_process_timeout() argument
H A Drw_t3t.cc482 void rw_t3t_process_timeout(TIMER_LIST_ENT* p_tle) { in rw_t3t_process_timeout() argument
487 if (p_tle == &p_cb->timer) { in rw_t3t_process_timeout()
/aosp12/hardware/st/nfc/1.0/gki/common/
H A Dgki.h305 typedef void(TIMER_CBACK)(void* p_tle);
/aosp12/hardware/st/nfc/st21nfc/gki/common/
H A Dgki.h305 typedef void(TIMER_CBACK)(void* p_tle);
/aosp12/system/nfc/src/nfa/p2p/
H A Dnfa_p2p_main.cc170 TIMER_LIST_ENT* p_tle) { in nfa_p2p_update_active_listen_timeout_cback() argument
/aosp12/system/nfc/src/nfa/dm/
H A Dnfa_dm_discover.cc64 static void nfa_dm_disc_kovio_timeout_cback(TIMER_LIST_ENT* p_tle);
819 TIMER_LIST_ENT* p_tle) { in nfa_dm_disc_deact_ntf_timeout_cback() argument
1559 TIMER_LIST_ENT* p_tle) { in nfa_dm_disc_kovio_timeout_cback() argument