Home
last modified time | relevance | path

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

12

/external/libnfc-nci/halimpl/bcm2079x/gki/common/
Dgki_time.c654 void GKI_init_timer_list_entry (TIMER_LIST_ENT *p_tle) in GKI_init_timer_list_entry() argument
656 p_tle->p_next = NULL; in GKI_init_timer_list_entry()
657 p_tle->p_prev = NULL; in GKI_init_timer_list_entry()
658 p_tle->ticks = GKI_UNUSED_LIST_ENTRY; in GKI_init_timer_list_entry()
659 p_tle->in_use = FALSE; in GKI_init_timer_list_entry()
683 TIMER_LIST_ENT *p_tle; in GKI_update_timer_list() local
688 p_tle = p_timer_listq->p_first; in GKI_update_timer_list()
692 while ((p_tle) && (p_tle->ticks <= 0)) in GKI_update_timer_list()
695 p_tle = p_tle->p_next; in GKI_update_timer_list()
702 while ((p_tle != NULL) && (rem_ticks > 0)) in GKI_update_timer_list()
[all …]
Dgki.h325 typedef void (TIMER_CBACK)(void *p_tle);
/external/libnfc-nci/src/gki/common/
Dgki_time.c654 void GKI_init_timer_list_entry (TIMER_LIST_ENT *p_tle) in GKI_init_timer_list_entry() argument
656 p_tle->p_next = NULL; in GKI_init_timer_list_entry()
657 p_tle->p_prev = NULL; in GKI_init_timer_list_entry()
658 p_tle->ticks = GKI_UNUSED_LIST_ENTRY; in GKI_init_timer_list_entry()
659 p_tle->in_use = FALSE; in GKI_init_timer_list_entry()
683 TIMER_LIST_ENT *p_tle; in GKI_update_timer_list() local
688 p_tle = p_timer_listq->p_first; in GKI_update_timer_list()
692 while ((p_tle) && (p_tle->ticks <= 0)) in GKI_update_timer_list()
695 p_tle = p_tle->p_next; in GKI_update_timer_list()
702 while ((p_tle != NULL) && (rem_ticks > 0)) in GKI_update_timer_list()
[all …]
Dgki.h328 typedef void (TIMER_CBACK)(void *p_tle);
/external/libnfc-nci/src/nfc/nfc/
Dnfc_task.c59 void nfc_start_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout) in nfc_start_timer() argument
83 GKI_remove_from_timer_list (&nfc_cb.timer_queue, p_tle); in nfc_start_timer()
85 p_tle->event = type; in nfc_start_timer()
86 p_tle->ticks = timeout; /* Save the number of seconds for the timer */ in nfc_start_timer()
88 GKI_add_to_timer_list (&nfc_cb.timer_queue, p_tle); in nfc_start_timer()
100 UINT32 nfc_remaining_time (TIMER_LIST_ENT *p_tle) in nfc_remaining_time() argument
102 return (GKI_get_remaining_ticks (&nfc_cb.timer_queue, p_tle)); in nfc_remaining_time()
116 TIMER_LIST_ENT *p_tle; in nfc_process_timer_evt() local
122 p_tle = nfc_cb.timer_queue.p_first; in nfc_process_timer_evt()
123 GKI_remove_from_timer_list (&nfc_cb.timer_queue, p_tle); in nfc_process_timer_evt()
[all …]
/external/libnfc-nci/src/nfa/sys/
Dnfa_sys_ptim.c63 TIMER_LIST_ENT *p_tle; in nfa_sys_ptim_timer_update() local
93 p_tle = p_cb->timer_queue.p_first; in nfa_sys_ptim_timer_update()
94 NFA_TRACE_DEBUG1 ("nfa_sys_ptim_timer_update expired: %08x", p_tle); in nfa_sys_ptim_timer_update()
95 GKI_remove_from_timer_list (&p_cb->timer_queue, p_tle); in nfa_sys_ptim_timer_update()
98 if (p_tle->p_cback) in nfa_sys_ptim_timer_update()
100 (*p_tle->p_cback) (p_tle); in nfa_sys_ptim_timer_update()
102 else if (p_tle->event) in nfa_sys_ptim_timer_update()
106 p_msg->event = p_tle->event; in nfa_sys_ptim_timer_update()
131 void nfa_sys_ptim_start_timer (tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout) in nfa_sys_ptim_start_timer() argument
133 NFA_TRACE_DEBUG1 ("nfa_sys_ptim_start_timer %08x", p_tle); in nfa_sys_ptim_start_timer()
[all …]
Dnfa_sys_main.c373 void nfa_sys_start_timer (TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout) in nfa_sys_start_timer() argument
375 nfa_sys_ptim_start_timer (&nfa_sys_cb.ptim_cb, p_tle, type, timeout); in nfa_sys_start_timer()
387 void nfa_sys_stop_timer (TIMER_LIST_ENT *p_tle) in nfa_sys_stop_timer() argument
389 nfa_sys_ptim_stop_timer (&nfa_sys_cb.ptim_cb, p_tle); in nfa_sys_stop_timer()
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
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) in nfc_hal_main_timeout_cback() argument
311 TIMER_LIST_ENT *p_tlent = (TIMER_LIST_ENT *) p_tle; in nfc_hal_main_timeout_cback()
389 void nfc_hal_main_start_quick_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout) in nfc_hal_main_start_quick_timer() argument
412 GKI_remove_from_timer_list (&nfc_hal_cb.quick_timer_queue, p_tle); in nfc_hal_main_start_quick_timer()
414 p_tle->event = type; in nfc_hal_main_start_quick_timer()
415 p_tle->ticks = timeout; /* Save the number of ticks for the timer */ in nfc_hal_main_start_quick_timer()
417 GKI_add_to_timer_list (&nfc_hal_cb.quick_timer_queue, p_tle); in nfc_hal_main_start_quick_timer()
429 void nfc_hal_main_stop_quick_timer (TIMER_LIST_ENT *p_tle) in nfc_hal_main_stop_quick_timer() argument
431 GKI_remove_from_timer_list (&nfc_hal_cb.quick_timer_queue, p_tle); in nfc_hal_main_stop_quick_timer()
[all …]
Dnfc_hal_hci.c803 void nfc_hal_hci_timeout_cback (void *p_tle) in nfc_hal_hci_timeout_cback() argument
805 TIMER_LIST_ENT *p_tlent = (TIMER_LIST_ENT *)p_tle; in nfc_hal_hci_timeout_cback()
Dnfc_hal_nci.c835 void nfc_hal_nci_cmd_timeout_cback (void *p_tle) in nfc_hal_nci_cmd_timeout_cback() argument
837 TIMER_LIST_ENT *p_tlent = (TIMER_LIST_ENT *)p_tle; in nfc_hal_nci_cmd_timeout_cback()
Dnfc_hal_prm.c940 void nfc_hal_prm_process_timeout (void *p_tle) in nfc_hal_prm_process_timeout() argument
/external/libnfc-nci/src/nfc/llcp/
Dllcp_main.c143 void llcp_process_timeout (TIMER_LIST_ENT *p_tle) in llcp_process_timeout() argument
147 LLCP_TRACE_DEBUG1 ("llcp_process_timeout: event=%d", p_tle->event); in llcp_process_timeout()
149 switch (p_tle->event) in llcp_process_timeout()
163 llcp_dlsm_execute ((tLLCP_DLCB *) (p_tle->param), LLCP_DLC_EVENT_TIMEOUT, &reason); in llcp_process_timeout()
/external/libnfc-nci/src/nfc/int/
Dnfc_int.h283 void nfc_start_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout);
284 UINT32 nfc_remaining_time (TIMER_LIST_ENT *p_tle);
285 void nfc_stop_timer (TIMER_LIST_ENT *p_tle);
287 void nfc_start_quick_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout);
288 void nfc_stop_quick_timer (TIMER_LIST_ENT *p_tle);
Drw_int.h610 extern void rw_t1t_process_timeout (TIMER_LIST_ENT *p_tle);
624 extern void rw_t2t_process_timeout (TIMER_LIST_ENT *p_tle);
628 extern void rw_t3t_process_timeout (TIMER_LIST_ENT *p_tle);
633 extern void rw_t4t_process_timeout (TIMER_LIST_ENT *p_tle);
636 extern void rw_i93_process_timeout (TIMER_LIST_ENT *p_tle);
Dce_int.h168 extern void ce_t4t_process_timeout (TIMER_LIST_ENT *p_tle);
Dllcp_int.h301 void llcp_process_timeout (TIMER_LIST_ENT *p_tle);
/external/libnfc-nci/src/nfa/int/
Dnfa_sys_ptim.h83 extern void nfa_sys_ptim_start_timer (tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle, UINT16 type, INT32 tim…
94 extern void nfa_sys_ptim_stop_timer (tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle);
Dnfa_sys.h124 extern void nfa_sys_start_timer (TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout);
125 extern void nfa_sys_stop_timer (TIMER_LIST_ENT *p_tle);
/external/libnfc-nci/src/hal/int/
Dnfc_hal_int.h467 void nfc_hal_main_start_quick_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout);
468 void nfc_hal_main_stop_quick_timer (TIMER_LIST_ENT *p_tle);
479 void nfc_hal_nci_cmd_timeout_cback (void *p_tle);
504 void nfc_hal_prm_process_timeout (void *p_tle);
514 void nfc_hal_hci_timeout_cback (void *p_tle);
/external/libnfc-nci/src/nfc/tags/
Dce_t4t.c564 void ce_t4t_process_timeout (TIMER_LIST_ENT *p_tle) in ce_t4t_process_timeout() argument
569 CE_TRACE_DEBUG1 ("ce_t4t_process_timeout () event=%d", p_tle->event); in ce_t4t_process_timeout()
571 if (p_tle->event == NFC_TTYPE_CE_T4T_UPDATE) in ce_t4t_process_timeout()
585 CE_TRACE_ERROR1 ("ce_t4t_process_timeout () unknown event=%d", p_tle->event); in ce_t4t_process_timeout()
Drw_t4t.c1893 void rw_t4t_process_timeout (TIMER_LIST_ENT *p_tle) in rw_t4t_process_timeout() argument
1895 RW_TRACE_DEBUG1 ("rw_t4t_process_timeout () event=%d", p_tle->event); in rw_t4t_process_timeout()
1897 if (p_tle->event == NFC_TTYPE_RW_T4T_RESPONSE) in rw_t4t_process_timeout()
1903 RW_TRACE_ERROR1 ("rw_t4t_process_timeout () unknown event=%d", p_tle->event); in rw_t4t_process_timeout()
Drw_i93.c2997 void rw_i93_process_timeout (TIMER_LIST_ENT *p_tle) in rw_i93_process_timeout() argument
3001 RW_TRACE_DEBUG1 ("rw_i93_process_timeout () event=%d", p_tle->event); in rw_i93_process_timeout()
3003 if (p_tle->event == NFC_TTYPE_RW_I93_RESPONSE) in rw_i93_process_timeout()
3032 RW_TRACE_ERROR1 ("rw_i93_process_timeout () unknown event=%d", p_tle->event); in rw_i93_process_timeout()
Drw_t2t.c444 void rw_t2t_process_timeout (TIMER_LIST_ENT *p_tle) in rw_t2t_process_timeout() argument
/external/libnfc-nci/src/nfa/p2p/
Dnfa_p2p_main.c185 static void nfa_p2p_update_active_listen_timeout_cback (TIMER_LIST_ENT *p_tle) in nfa_p2p_update_active_listen_timeout_cback() argument
/external/libnfc-nci/src/nfa/dm/
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) in nfa_dm_disc_deact_ntf_timeout_cback() argument
1664 static void nfa_dm_disc_kovio_timeout_cback (TIMER_LIST_ENT *p_tle) in nfa_dm_disc_kovio_timeout_cback() argument

12