HomeSort by relevance Sort by last modified time
    Searched refs:p_tle (Results 1 - 25 of 57) sorted by null

1 2 3

  /system/bt/stack/include/
port_ext.h 31 extern void rfcomm_process_timeout (TIMER_LIST_ENT *p_tle);
btu.h 54 typedef void (*tBTU_TIMER_CALLBACK)(TIMER_LIST_ENT *p_tle);
190 TIMER_LIST_ENT *p_tle; /* timer entry */ member in struct:__anon69605
235 extern void btu_start_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout);
236 extern void btu_stop_timer (TIMER_LIST_ENT *p_tle);
237 extern void btu_start_timer_oneshot(TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout);
238 extern void btu_stop_timer_oneshot(TIMER_LIST_ENT *p_tle);
246 extern void btu_start_quick_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout);
247 extern void btu_stop_quick_timer (TIMER_LIST_ENT *p_tle);
  /external/libnfc-nci/src/nfa/sys/
nfa_sys_ptim.c 63 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, UINT16 type, INT32 timeout
    [all...]
nfa_sys_main.c 373 void nfa_sys_start_timer (TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout)
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)
389 nfa_sys_ptim_stop_timer (&nfa_sys_cb.ptim_cb, p_tle);
  /system/bt/stack/btu/
btu_task.c 121 typedef void (tUSER_TIMEOUT_FUNC) (TIMER_LIST_ENT *p_tle);
123 static void btu_l2cap_alarm_process(TIMER_LIST_ENT *p_tle);
124 static void btu_general_alarm_process(TIMER_LIST_ENT *p_tle);
125 static void btu_bta_alarm_process(TIMER_LIST_ENT *p_tle);
134 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)fixed_queue_dequeue(queue); local
135 btu_general_alarm_process(p_tle);
139 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)fixed_queue_dequeue(queue); local
140 btu_general_alarm_process(p_tle);
142 switch (p_tle->event) {
145 btm_ble_timeout(p_tle);
165 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)fixed_queue_dequeue(queue); local
175 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)fixed_queue_dequeue(queue); local
447 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)data; local
527 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)data; local
584 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)data; local
    [all...]
  /external/libnfc-nci/src/nfc/nfc/
nfc_task.c 59 void nfc_start_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout)
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)
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);
247 TIMER_LIST_ENT *p_tle; local
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/gki/common/
gki_time.c 649 ** Parameters p_tle - (input) pointer to a timer list queue entry
654 void GKI_init_timer_list_entry (TIMER_LIST_ENT *p_tle)
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->ticks <= 0)
751 TIMER_LIST_ENT *p_tle; local
    [all...]
  /external/libnfc-nci/src/gki/common/
gki_time.c 649 ** Parameters p_tle - (input) pointer to a timer list queue entry
654 void GKI_init_timer_list_entry (TIMER_LIST_ENT *p_tle)
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->ticks <= 0)
751 TIMER_LIST_ENT *p_tle; local
    [all...]
  /external/libnfc-nci/src/nfa/int/
nfa_sys_ptim.h 83 extern void nfa_sys_ptim_start_timer (tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout);
94 extern void nfa_sys_ptim_stop_timer (tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle);
nfa_sys.h 124 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/halimpl/bcm2079x/hal/hal/
nfc_hal_main.c 54 static void nfc_hal_main_timeout_cback (void *p_tle);
260 static void nfc_hal_main_timeout_cback (void *p_tle)
262 TIMER_LIST_ENT *p_tlent = (TIMER_LIST_ENT *) p_tle;
340 void nfc_hal_main_start_quick_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout)
363 GKI_remove_from_timer_list (&nfc_hal_cb.quick_timer_queue, p_tle);
365 p_tle->event = type;
366 p_tle->ticks = timeout; /* Save the number of ticks for the timer */
368 GKI_add_to_timer_list (&nfc_hal_cb.quick_timer_queue, p_tle);
380 void nfc_hal_main_stop_quick_timer (TIMER_LIST_ENT *p_tle)
382 GKI_remove_from_timer_list (&nfc_hal_cb.quick_timer_queue, p_tle);
402 TIMER_LIST_ENT *p_tle; local
    [all...]
  /external/libnfc-nci/src/nfc/llcp/
llcp_main.c 143 void llcp_process_timeout (TIMER_LIST_ENT *p_tle)
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);
  /system/bt/bta/sys/
bta_sys_main.c 620 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *)data; local
622 fixed_queue_enqueue(btu_bta_alarm_queue, p_tle);
625 void bta_sys_start_timer(TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout_ms) {
626 assert(p_tle != NULL);
628 // Get the alarm for this p_tle.
630 if (!hash_map_has_key(bta_alarm_hash_map, p_tle)) {
631 hash_map_set(bta_alarm_hash_map, p_tle, alarm_new());
635 alarm_t *alarm = hash_map_get(bta_alarm_hash_map, p_tle);
641 p_tle->event = type;
642 p_tle->ticks = timeout_ms
    [all...]
bta_sys.h 230 extern void bta_sys_start_timer(TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout_ms);
231 extern void bta_sys_stop_timer(TIMER_LIST_ENT *p_tle);
  /system/bt/gki/common/
gki.h 28 typedef void (TIMER_CBACK)(void *p_tle);
  /system/bt/stack/hid/
hidh_int.h 72 extern void hidh_proc_repage_timeout (TIMER_LIST_ENT *p_tle);
hidh_conn.c 302 void hidh_proc_repage_timeout (TIMER_LIST_ENT *p_tle)
304 hidh_conn_initiate( (UINT8) p_tle->param ) ;
305 hh_cb.devices[p_tle->param].conn_tries++;
306 hh_cb.callback( (UINT8) p_tle->param, hh_cb.devices[p_tle->param].addr,
307 HID_HDEV_EVT_RETRYING, hh_cb.devices[p_tle->param].conn_tries, NULL ) ;
    [all...]
  /system/bt/stack/rfcomm/
rfc_utils.c 223 TIMER_LIST_ENT *p_tle = &p_mcb->tle; local
227 p_tle->param = (UINT32)p_mcb;
229 btu_start_timer (p_tle, BTU_TTYPE_RFCOMM_MFC, timeout);
257 TIMER_LIST_ENT *p_tle = &p_port->rfc.tle; local
261 p_tle->param = (UINT32)p_port;
263 btu_start_timer (p_tle, BTU_TTYPE_RFCOMM_PORT, timeout);
325 void rfcomm_process_timeout (TIMER_LIST_ENT *p_tle)
327 switch (p_tle->event)
330 rfc_mx_sm_execute ((tRFC_MCB *)p_tle->param, RFC_EVENT_TIMEOUT, NULL);
334 rfc_port_sm_execute ((tPORT *)p_tle->param, RFC_EVENT_TIMEOUT, NULL)
    [all...]
  /external/libnfc-nci/src/nfc/int/
nfc_int.h 271 void nfc_start_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout);
272 UINT32 nfc_remaining_time (TIMER_LIST_ENT *p_tle);
273 void nfc_stop_timer (TIMER_LIST_ENT *p_tle);
275 void nfc_start_quick_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout);
276 void nfc_stop_quick_timer (TIMER_LIST_ENT *p_tle);
ce_int.h 168 extern void ce_t4t_process_timeout (TIMER_LIST_ENT *p_tle);
rw_int.h     [all...]
  /external/libnfc-nci/src/hal/int/
nfc_hal_int.h 460 void nfc_hal_main_start_quick_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout);
461 void nfc_hal_main_stop_quick_timer (TIMER_LIST_ENT *p_tle);
472 void nfc_hal_nci_cmd_timeout_cback (void *p_tle);
494 void nfc_hal_prm_process_timeout (void *p_tle);
504 void nfc_hal_hci_timeout_cback (void *p_tle);
  /system/bt/bta/ag/
bta_ag_main.c 288 TIMER_LIST_ENT *p_tle = (TIMER_LIST_ENT *) p; local
292 p_buf->event = p_tle->event;
293 p_buf->layer_specific = bta_ag_scb_to_idx((tBTA_AG_SCB *) p_tle->param);
579 static void bta_ag_colli_timer_cback (TIMER_LIST_ENT *p_tle)
585 if (p_tle)
587 p_scb = (tBTA_AG_SCB *)p_tle->param;
    [all...]
  /system/bt/stack/mcap/
mca_api.c 50 void mca_process_timeout(TIMER_LIST_ENT *p_tle)
52 if(p_tle->event == BTU_TTYPE_MCA_CCB_RSP)
54 p_tle->event = 0;
55 mca_ccb_event ((tMCA_CCB *) p_tle->param, MCA_CCB_RSP_TOUT_EVT, NULL);
    [all...]
  /system/bt/stack/l2cap/
l2c_main.c     [all...]

Completed in 424 milliseconds

1 2 3