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

/external/libnfc-nci/src/nfa/sys/
H A Dnfa_sys_ptim.c63 TIMER_LIST_ENT *p_tle; local
93 p_tle = p_cb->timer_queue.p_first;
94 NFA_TRACE_DEBUG1 ("nfa_sys_ptim_timer_update expired: %08x", p_tle);
95 GKI_remove_from_timer_list (&p_cb->timer_queue, p_tle);
98 if (p_tle->p_cback)
100 (*p_tle->p_cback) (p_tle);
102 else if (p_tle->event)
106 p_msg->event = p_tle->event;
131 void nfa_sys_ptim_start_timer (tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle, UINT1 argument
160 nfa_sys_ptim_stop_timer(tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle) argument
[all...]
H A Dnfa_sys_main.c373 void nfa_sys_start_timer (TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout) argument
375 nfa_sys_ptim_start_timer (&nfa_sys_cb.ptim_cb, p_tle, type, timeout);
387 void nfa_sys_stop_timer (TIMER_LIST_ENT *p_tle) argument
389 nfa_sys_ptim_stop_timer (&nfa_sys_cb.ptim_cb, p_tle);
/external/libnfc-nci/src/nfc/llcp/
H A Dllcp_main.c143 void llcp_process_timeout (TIMER_LIST_ENT *p_tle) argument
147 LLCP_TRACE_DEBUG1 ("llcp_process_timeout: event=%d", p_tle->event);
149 switch (p_tle->event)
163 llcp_dlsm_execute ((tLLCP_DLCB *) (p_tle->param), LLCP_DLC_EVENT_TIMEOUT, &reason);
/external/libnfc-nci/src/nfc/nfc/
H A Dnfc_task.c59 void nfc_start_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout) argument
83 GKI_remove_from_timer_list (&nfc_cb.timer_queue, p_tle);
85 p_tle->event = type;
86 p_tle->ticks = timeout; /* Save the number of seconds for the timer */
88 GKI_add_to_timer_list (&nfc_cb.timer_queue, p_tle);
100 UINT32 nfc_remaining_time (TIMER_LIST_ENT *p_tle) argument
102 return (GKI_get_remaining_ticks (&nfc_cb.timer_queue, p_tle));
116 TIMER_LIST_ENT *p_tle; local
122 p_tle = nfc_cb.timer_queue.p_first;
123 GKI_remove_from_timer_list (&nfc_cb.timer_queue, p_tle);
157 nfc_stop_timer(TIMER_LIST_ENT *p_tle) argument
181 nfc_start_quick_timer(TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout) argument
225 nfc_stop_quick_timer(TIMER_LIST_ENT *p_tle) argument
247 TIMER_LIST_ENT *p_tle; local
[all...]
/external/libnfc-nci/halimpl/bcm2079x/gki/common/
H A Dgki_time.c649 ** Parameters p_tle - (input) pointer to a timer list queue entry
654 void GKI_init_timer_list_entry (TIMER_LIST_ENT *p_tle) argument
656 p_tle->p_next = NULL;
657 p_tle->p_prev = NULL;
658 p_tle->ticks = GKI_UNUSED_LIST_ENTRY;
659 p_tle->in_use = FALSE;
683 TIMER_LIST_ENT *p_tle; local
688 p_tle = p_timer_listq->p_first;
692 while ((p_tle) && (p_tle
751 TIMER_LIST_ENT *p_tle; local
800 GKI_add_to_timer_list(TIMER_LIST_Q *p_timer_listq, TIMER_LIST_ENT *p_tle) argument
903 GKI_remove_from_timer_list(TIMER_LIST_Q *p_timer_listq, TIMER_LIST_ENT *p_tle) argument
[all...]
/external/libnfc-nci/src/gki/common/
H A Dgki_time.c649 ** Parameters p_tle - (input) pointer to a timer list queue entry
654 void GKI_init_timer_list_entry (TIMER_LIST_ENT *p_tle) argument
656 p_tle->p_next = NULL;
657 p_tle->p_prev = NULL;
658 p_tle->ticks = GKI_UNUSED_LIST_ENTRY;
659 p_tle->in_use = FALSE;
683 TIMER_LIST_ENT *p_tle; local
688 p_tle = p_timer_listq->p_first;
692 while ((p_tle) && (p_tle
751 TIMER_LIST_ENT *p_tle; local
800 GKI_add_to_timer_list(TIMER_LIST_Q *p_timer_listq, TIMER_LIST_ENT *p_tle) argument
903 GKI_remove_from_timer_list(TIMER_LIST_Q *p_timer_listq, TIMER_LIST_ENT *p_tle) argument
[all...]
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_hci.c803 void nfc_hal_hci_timeout_cback (void *p_tle) argument
805 TIMER_LIST_ENT *p_tlent = (TIMER_LIST_ENT *)p_tle;
H A Dnfc_hal_main.c54 static void nfc_hal_main_timeout_cback (void *p_tle);
309 static void nfc_hal_main_timeout_cback (void *p_tle) argument
311 TIMER_LIST_ENT *p_tlent = (TIMER_LIST_ENT *) p_tle;
389 void nfc_hal_main_start_quick_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout) argument
412 GKI_remove_from_timer_list (&nfc_hal_cb.quick_timer_queue, p_tle);
414 p_tle->event = type;
415 p_tle->ticks = timeout; /* Save the number of ticks for the timer */
417 GKI_add_to_timer_list (&nfc_hal_cb.quick_timer_queue, p_tle);
429 void nfc_hal_main_stop_quick_timer (TIMER_LIST_ENT *p_tle) argument
431 GKI_remove_from_timer_list (&nfc_hal_cb.quick_timer_queue, p_tle);
451 TIMER_LIST_ENT *p_tle; local
[all...]
H A Dnfc_hal_nci.c835 void nfc_hal_nci_cmd_timeout_cback (void *p_tle) argument
837 TIMER_LIST_ENT *p_tlent = (TIMER_LIST_ENT *)p_tle;
H A Dnfc_hal_dm.c1126 static void nci_brcm_lp_timeout_cback (void *p_tle) argument
H A Dnfc_hal_prm.c940 void nfc_hal_prm_process_timeout (void *p_tle) argument
/external/libnfc-nci/src/nfa/p2p/
H A Dnfa_p2p_main.c185 static void nfa_p2p_update_active_listen_timeout_cback (TIMER_LIST_ENT *p_tle) argument
/external/libnfc-nci/src/nfc/tags/
H A Dce_t4t.c564 void ce_t4t_process_timeout (TIMER_LIST_ENT *p_tle) argument
569 CE_TRACE_DEBUG1 ("ce_t4t_process_timeout () event=%d", p_tle->event);
571 if (p_tle->event == NFC_TTYPE_CE_T4T_UPDATE)
585 CE_TRACE_ERROR1 ("ce_t4t_process_timeout () unknown event=%d", p_tle->event);
H A Drw_t1t.c535 void rw_t1t_process_timeout (TIMER_LIST_ENT *p_tle) argument
H A Drw_t2t.c444 void rw_t2t_process_timeout (TIMER_LIST_ENT *p_tle) argument
H A Drw_t4t.c1893 void rw_t4t_process_timeout (TIMER_LIST_ENT *p_tle) argument
1895 RW_TRACE_DEBUG1 ("rw_t4t_process_timeout () event=%d", p_tle->event);
1897 if (p_tle->event == NFC_TTYPE_RW_T4T_RESPONSE)
1903 RW_TRACE_ERROR1 ("rw_t4t_process_timeout () unknown event=%d", p_tle->event);
H A Drw_i93.c2997 void rw_i93_process_timeout (TIMER_LIST_ENT *p_tle) argument
3001 RW_TRACE_DEBUG1 ("rw_i93_process_timeout () event=%d", p_tle->event);
3003 if (p_tle->event == NFC_TTYPE_RW_I93_RESPONSE)
3032 RW_TRACE_ERROR1 ("rw_i93_process_timeout () unknown event=%d", p_tle->event);
H A Drw_t3t.c480 void rw_t3t_process_timeout (TIMER_LIST_ENT *p_tle) argument
486 if (p_tle == &p_cb->timer)
/external/libnfc-nci/src/nfa/dm/
H A Dnfa_dm_discover.c55 static void nfa_dm_disc_kovio_timeout_cback (TIMER_LIST_ENT *p_tle);
904 static void nfa_dm_disc_deact_ntf_timeout_cback (TIMER_LIST_ENT *p_tle) argument
1664 static void nfa_dm_disc_kovio_timeout_cback (TIMER_LIST_ENT *p_tle) argument

Completed in 233 milliseconds