HomeSort by relevance Sort by last modified time
    Searched full:p_tle (Results 1 - 14 of 14) sorted by null

  /system/nfc/src/nfa/sys/
nfa_sys_ptim.cc 63 TIMER_LIST_ENT* p_tle; local
91 p_tle = p_cb->timer_queue.p_first;
93 << StringPrintf("nfa_sys_ptim_timer_update expired: %p", p_tle);
94 GKI_remove_from_timer_list(&p_cb->timer_queue, p_tle);
97 if (p_tle->p_cback) {
98 (*p_tle->p_cback)(p_tle);
99 } else if (p_tle->event) {
102 p_msg->event = p_tle->event;
126 void nfa_sys_ptim_start_timer(tPTIM_CB* p_cb, TIMER_LIST_ENT* p_tle,
    [all...]
nfa_sys_main.cc 343 void nfa_sys_start_timer(TIMER_LIST_ENT* p_tle, uint16_t type,
345 nfa_sys_ptim_start_timer(&nfa_sys_cb.ptim_cb, p_tle, type, timeout);
357 void nfa_sys_stop_timer(TIMER_LIST_ENT* p_tle) {
358 nfa_sys_ptim_stop_timer(&nfa_sys_cb.ptim_cb, p_tle);
  /system/nfc/src/nfc/nfc/
nfc_task.cc 60 void nfc_start_timer(TIMER_LIST_ENT* p_tle, uint16_t type, uint32_t timeout) {
79 GKI_remove_from_timer_list(&nfc_cb.timer_queue, p_tle);
81 p_tle->event = type;
82 p_tle->ticks = timeout; /* Save the number of seconds for the timer */
84 GKI_add_to_timer_list(&nfc_cb.timer_queue, p_tle);
96 uint32_t nfc_remaining_time(TIMER_LIST_ENT* p_tle) {
97 return (GKI_get_remaining_ticks(&nfc_cb.timer_queue, p_tle));
110 TIMER_LIST_ENT* p_tle; local
115 p_tle = nfc_cb.timer_queue.p_first;
116 GKI_remove_from_timer_list(&nfc_cb.timer_queue, p_tle);
234 TIMER_LIST_ENT* p_tle; local
    [all...]
  /system/nfc/src/gki/common/
gki_time.cc 603 ** Parameters p_tle - (input) pointer to a timer list queue entry
608 void GKI_init_timer_list_entry(TIMER_LIST_ENT* p_tle) {
609 p_tle->p_next = NULL;
610 p_tle->p_prev = NULL;
611 p_tle->ticks = GKI_UNUSED_LIST_ENTRY;
612 p_tle->in_use = false;
638 TIMER_LIST_ENT* p_tle; local
643 p_tle = p_timer_listq->p_first;
647 while ((p_tle) && (p_tle->ticks <= 0))
703 TIMER_LIST_ENT* p_tle; local
    [all...]
gki.h 298 typedef void(TIMER_CBACK)(TIMER_LIST_ENT* p_tle);
  /system/nfc/src/nfa/include/
nfa_sys_ptim.h 77 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);
nfa_sys.h 111 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);
  /system/nfc/src/nfc/llcp/
llcp_main.cc 148 void llcp_process_timeout(TIMER_LIST_ENT* p_tle) {
152 << StringPrintf("llcp_process_timeout: event=%d", p_tle->event);
154 switch (p_tle->event) {
167 llcp_dlsm_execute((tLLCP_DLCB*)(p_tle->param), LLCP_DLC_EVENT_TIMEOUT,
  /system/nfc/src/nfc/include/
nfc_int.h 312 void nfc_start_timer(TIMER_LIST_ENT* p_tle, uint16_t type, uint32_t timeout);
313 uint32_t nfc_remaining_time(TIMER_LIST_ENT* p_tle);
314 void nfc_stop_timer(TIMER_LIST_ENT* p_tle);
316 void nfc_start_quick_timer(TIMER_LIST_ENT* p_tle, uint16_t type,
318 void nfc_stop_quick_timer(TIMER_LIST_ENT* p_tle);
ce_int.h 166 extern void ce_t4t_process_timeout(TIMER_LIST_ENT* p_tle);
rw_int.h     [all...]
llcp_int.h 296 void llcp_process_timeout(TIMER_LIST_ENT* p_tle);
  /system/nfc/src/nfa/p2p/
nfa_p2p_main.cc 170 TIMER_LIST_ENT* p_tle) {
  /system/nfc/src/nfa/dm/
nfa_dm_discover.cc 64 static void nfa_dm_disc_kovio_timeout_cback(TIMER_LIST_ENT* p_tle);
845 TIMER_LIST_ENT* p_tle) {
    [all...]

Completed in 2838 milliseconds