Searched defs:p_tle (Results 1 - 19 of 19) sorted by relevance

/system/nfc/src/nfa/sys/
H A Dnfa_sys_ptim.c60 TIMER_LIST_ENT* p_tle; local
88 p_tle = p_cb->timer_queue.p_first;
89 NFA_TRACE_DEBUG1("nfa_sys_ptim_timer_update expired: %08x", p_tle);
90 GKI_remove_from_timer_list(&p_cb->timer_queue, p_tle);
93 if (p_tle->p_cback) {
94 (*p_tle->p_cback)(p_tle);
95 } else if (p_tle->event) {
98 p_msg->event = p_tle->event;
122 void nfa_sys_ptim_start_timer(tPTIM_CB* p_cb, TIMER_LIST_ENT* p_tle, argument
150 nfa_sys_ptim_stop_timer(tPTIM_CB* p_cb, TIMER_LIST_ENT* p_tle) argument
[all...]
H A Dnfa_sys_main.c335 void nfa_sys_start_timer(TIMER_LIST_ENT* p_tle, uint16_t type, argument
337 nfa_sys_ptim_start_timer(&nfa_sys_cb.ptim_cb, p_tle, type, timeout);
349 void nfa_sys_stop_timer(TIMER_LIST_ENT* p_tle) { argument
350 nfa_sys_ptim_stop_timer(&nfa_sys_cb.ptim_cb, p_tle);
/system/nfc/src/nfc/llcp/
H A Dllcp_main.c143 void llcp_process_timeout(TIMER_LIST_ENT* p_tle) { argument
146 LLCP_TRACE_DEBUG1("llcp_process_timeout: event=%d", p_tle->event);
148 switch (p_tle->event) {
161 llcp_dlsm_execute((tLLCP_DLCB*)(p_tle->param), LLCP_DLC_EVENT_TIMEOUT,
/system/nfc/src/nfc/nfc/
H A Dnfc_task.c55 void nfc_start_timer(TIMER_LIST_ENT* p_tle, uint16_t type, uint32_t timeout) { argument
74 GKI_remove_from_timer_list(&nfc_cb.timer_queue, p_tle);
76 p_tle->event = type;
77 p_tle->ticks = timeout; /* Save the number of seconds for the timer */
79 GKI_add_to_timer_list(&nfc_cb.timer_queue, p_tle);
91 uint32_t nfc_remaining_time(TIMER_LIST_ENT* p_tle) { argument
92 return (GKI_get_remaining_ticks(&nfc_cb.timer_queue, p_tle));
105 TIMER_LIST_ENT* p_tle; local
110 p_tle = nfc_cb.timer_queue.p_first;
111 GKI_remove_from_timer_list(&nfc_cb.timer_queue, p_tle);
146 nfc_stop_timer(TIMER_LIST_ENT* p_tle) argument
168 nfc_start_quick_timer(TIMER_LIST_ENT* p_tle, uint16_t type, uint32_t timeout) argument
207 nfc_stop_quick_timer(TIMER_LIST_ENT* p_tle) argument
226 TIMER_LIST_ENT* p_tle; local
[all...]
/system/nfc/halimpl/bcm2079x/gki/common/
H A Dgki_time.c609 ** Parameters p_tle - (input) pointer to a timer list queue
615 void GKI_init_timer_list_entry(TIMER_LIST_ENT* p_tle) { argument
616 p_tle->p_next = NULL;
617 p_tle->p_prev = NULL;
618 p_tle->ticks = GKI_UNUSED_LIST_ENTRY;
619 p_tle->in_use = false;
647 TIMER_LIST_ENT* p_tle; local
652 p_tle = p_timer_listq->p_first;
656 while ((p_tle) && (p_tle
713 TIMER_LIST_ENT* p_tle; local
760 GKI_add_to_timer_list(TIMER_LIST_Q* p_timer_listq, TIMER_LIST_ENT* p_tle) argument
849 GKI_remove_from_timer_list(TIMER_LIST_Q* p_timer_listq, TIMER_LIST_ENT* p_tle) argument
[all...]
/system/nfc/src/gki/common/
H A Dgki_time.c601 ** Parameters p_tle - (input) pointer to a timer list queue entry
606 void GKI_init_timer_list_entry(TIMER_LIST_ENT* p_tle) { argument
607 p_tle->p_next = NULL;
608 p_tle->p_prev = NULL;
609 p_tle->ticks = GKI_UNUSED_LIST_ENTRY;
610 p_tle->in_use = false;
636 TIMER_LIST_ENT* p_tle; local
641 p_tle = p_timer_listq->p_first;
645 while ((p_tle) && (p_tle
701 TIMER_LIST_ENT* p_tle; local
747 GKI_add_to_timer_list(TIMER_LIST_Q* p_timer_listq, TIMER_LIST_ENT* p_tle) argument
835 GKI_remove_from_timer_list(TIMER_LIST_Q* p_timer_listq, TIMER_LIST_ENT* p_tle) argument
[all...]
/system/nfc/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_hci.c838 void nfc_hal_hci_timeout_cback(void* p_tle) { argument
839 TIMER_LIST_ENT* p_tlent = (TIMER_LIST_ENT*)p_tle;
H A Dnfc_hal_main.c51 static void nfc_hal_main_timeout_cback(void* p_tle);
291 static void nfc_hal_main_timeout_cback(void* p_tle) { argument
292 TIMER_LIST_ENT* p_tlent = (TIMER_LIST_ENT*)p_tle;
366 void nfc_hal_main_start_quick_timer(TIMER_LIST_ENT* p_tle, uint16_t type, argument
387 GKI_remove_from_timer_list(&nfc_hal_cb.quick_timer_queue, p_tle);
389 p_tle->event = type;
390 p_tle->ticks = timeout; /* Save the number of ticks for the timer */
392 GKI_add_to_timer_list(&nfc_hal_cb.quick_timer_queue, p_tle);
404 void nfc_hal_main_stop_quick_timer(TIMER_LIST_ENT* p_tle) { argument
405 GKI_remove_from_timer_list(&nfc_hal_cb.quick_timer_queue, p_tle);
423 TIMER_LIST_ENT* p_tle; local
[all...]
H A Dnfc_hal_nci.c770 void nfc_hal_nci_cmd_timeout_cback(void* p_tle) { argument
771 TIMER_LIST_ENT* p_tlent = (TIMER_LIST_ENT*)p_tle;
H A Dnfc_hal_dm.c1067 static void nci_brcm_lp_timeout_cback(void* p_tle) { argument
H A Dnfc_hal_prm.c935 void nfc_hal_prm_process_timeout(void* p_tle) { argument
/system/nfc/src/nfa/p2p/
H A Dnfa_p2p_main.c167 static void nfa_p2p_update_active_listen_timeout_cback(TIMER_LIST_ENT* p_tle) { argument
/system/nfc/src/nfc/tags/
H A Dce_t4t.c511 void ce_t4t_process_timeout(TIMER_LIST_ENT* p_tle) { argument
515 CE_TRACE_DEBUG1("ce_t4t_process_timeout () event=%d", p_tle->event);
517 if (p_tle->event == NFC_TTYPE_CE_T4T_UPDATE) {
527 CE_TRACE_ERROR1("ce_t4t_process_timeout () unknown event=%d", p_tle->event);
H A Drw_t1t.c528 void rw_t1t_process_timeout(TIMER_LIST_ENT* p_tle) { argument
H A Drw_t2t.c413 void rw_t2t_process_timeout(TIMER_LIST_ENT* p_tle) { argument
H A Drw_t4t.c1727 void rw_t4t_process_timeout(TIMER_LIST_ENT* p_tle) { argument
1728 RW_TRACE_DEBUG1("rw_t4t_process_timeout () event=%d", p_tle->event);
1730 if (p_tle->event == NFC_TTYPE_RW_T4T_RESPONSE) {
1733 RW_TRACE_ERROR1("rw_t4t_process_timeout () unknown event=%d", p_tle->event);
H A Drw_i93.c2642 void rw_i93_process_timeout(TIMER_LIST_ENT* p_tle) { argument
2645 RW_TRACE_DEBUG1("rw_i93_process_timeout () event=%d", p_tle->event);
2647 if (p_tle->event == NFC_TTYPE_RW_I93_RESPONSE) {
2671 RW_TRACE_ERROR1("rw_i93_process_timeout () unknown event=%d", p_tle->event);
H A Drw_t3t.c474 void rw_t3t_process_timeout(TIMER_LIST_ENT* p_tle) { argument
479 if (p_tle == &p_cb->timer) {
/system/nfc/src/nfa/dm/
H A Dnfa_dm_discover.c58 static void nfa_dm_disc_kovio_timeout_cback(TIMER_LIST_ENT* p_tle);
811 static void nfa_dm_disc_deact_ntf_timeout_cback(TIMER_LIST_ENT* p_tle) { argument
1515 static void nfa_dm_disc_kovio_timeout_cback(TIMER_LIST_ENT* p_tle) { argument

Completed in 149 milliseconds