HomeSort by relevance Sort by last modified time
    Searched refs:timer_id (Results 1 - 13 of 13) sorted by null

  /external/bluetooth/bluedroid/bta/include/
ptim.h 38 UINT8 timer_id; /* GKI timer id */ member in struct:__anon2807
59 extern void ptim_init(tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id);
  /external/libnfc-nci/src/nfa/int/
nfa_sys_ptim.h 39 UINT8 timer_id; /* GKI timer id */ member in struct:__anon10523
60 extern void nfa_sys_ptim_init (tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id);
  /external/bluetooth/bluedroid/bta/sys/
ptim.c 36 ** timer_id is the GKI timer id.
41 void ptim_init(tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id)
45 p_cb->timer_id = timer_id;
113 GKI_stop_timer(p_cb->timer_id);
133 GKI_start_timer(p_cb->timer_id, GKI_MS_TO_TICKS(p_cb->period), TRUE);
160 GKI_stop_timer(p_cb->timer_id);
  /external/libnfc-nci/src/nfa/sys/
nfa_sys_ptim.c 38 ** timer_id is the GKI timer id.
43 void nfa_sys_ptim_init (tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id)
47 p_cb->timer_id = timer_id;
117 GKI_stop_timer (p_cb->timer_id);
140 GKI_start_timer (p_cb->timer_id, GKI_MS_TO_TICKS (p_cb->period), TRUE);
170 GKI_stop_timer (p_cb->timer_id);
  /external/bluetooth/bluedroid/hci/src/
lpm.c 86 timer_t timer_id; member in struct:__anon3006
142 se.sigev_value.sival_ptr = &bt_lpm_cb.timer_id;
146 status = timer_create(CLOCK_MONOTONIC, &se, &bt_lpm_cb.timer_id);
159 status = timer_settime(bt_lpm_cb.timer_id, 0, &ts, 0);
186 status = timer_settime(bt_lpm_cb.timer_id, 0, &ts, 0);
228 timer_delete(bt_lpm_cb.timer_id);
273 timer_delete(bt_lpm_cb.timer_id);
  /external/libnfc-nxp/src/
phLlcNfc_Timer.c 120 gpphLlcNfc_Ctxt->s_timerinfo.timer_id[index] =
163 gpphLlcNfc_Ctxt->s_timerinfo.timer_id[index] =
211 timerid = ps_timer_info->timer_id[PH_LLCNFC_CONNECTION_TO_INDEX];
248 timerid = ps_timer_info->timer_id[PH_LLCNFC_GUARDTIMER];
309 timerid = ps_timer_info->timer_id[PH_LLCNFC_ACKTIMER];
370 timerid = ps_timer_info->timer_id
442 timerid = ps_timer_info->timer_id[PH_LLCNFC_GUARDTIMER];
471 timerid = ps_timer_info->timer_id[PH_LLCNFC_ACKTIMER];
518 timerid = ps_timer_info->timer_id[timer_index];
543 timerid = ps_timer_info->timer_id[timer_index]
    [all...]
phDnldNfc.c 492 uint32_t timer_id; member in struct:phDnldNfc_sContext
968 if ( NXP_INVALID_TIMER_ID != (*ppsDnldContext)->timer_id )
970 phOsalNfc_Timer_Stop((*ppsDnldContext)->timer_id );
971 phOsalNfc_Timer_Delete((*ppsDnldContext)->timer_id );
972 (*ppsDnldContext)->timer_id = NXP_INVALID_TIMER_ID;
    [all...]
phLlcNfc_DataTypes.h 476 uint32_t timer_id[PH_LLCNFC_MAX_TIMER_USED]; member in struct:phLlcNfc_Timerinfo
phLibNfc_ndef_raw.c 102 STATIC void CheckNdef_timer_cb(uint32_t timer_id, void *pContext);
    [all...]
  /hardware/broadcom/libbt/src/
upio.c 83 timer_t timer_id; member in struct:__anon20424
234 timer_delete(lpm_proc_cb.timer_id);
365 timer_delete(lpm_proc_cb.timer_id);
386 se.sigev_value.sival_ptr = &lpm_proc_cb.timer_id;
391 &lpm_proc_cb.timer_id);
469 timer_settime(lpm_proc_cb.timer_id, 0, &ts, 0);
  /external/bluetooth/bluedroid/main/
bte_main.c 72 timer_t timer_id; member in struct:__anon3019
346 se.sigev_value.sival_ptr = &preload_retry_cb.timer_id;
350 status = timer_create(CLOCK_MONOTONIC, &se, &preload_retry_cb.timer_id);
363 status = timer_settime(preload_retry_cb.timer_id, 0, &ts, 0);
382 timer_delete(preload_retry_cb.timer_id);
  /bionic/libc/bionic/
pthread-timers.c 195 /* convert a timer_id into the corresponding thr_timer_t* pointer
295 int timer_create(clockid_t clock_id, struct sigevent* evp, timer_t* timer_id) {
298 return __timer_create(clock_id, evp, timer_id);
355 *timer_id = timer->id;
383 * above ensured that the object and its timer_id cannot be
  /external/tcpdump/
tcpdump.c 122 static UINT timer_id; variable
1021 timer_id = timeSetEvent(1000, 100, verbose_stats_dump, 0, TIME_PERIODIC);
1092 if (timer_id)
1093 timeKillEvent(timer_id);
1094 timer_id = 0;
1366 void CALLBACK verbose_stats_dump (UINT timer_id _U_, UINT msg _U_, DWORD_PTR arg _U_,
    [all...]

Completed in 1616 milliseconds