Searched refs:timer_id (Results 1 - 22 of 22) sorted by relevance

/external/bluetooth/bluedroid/bta/include/
H A Dptim.h38 UINT8 timer_id; /* GKI timer id */ member in struct:__anon846
59 extern void ptim_init(tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id);
/external/libnfc-nci/src/nfa/int/
H A Dnfa_sys_ptim.h39 UINT8 timer_id; /* GKI timer id */ member in struct:__anon20179
60 extern void nfa_sys_ptim_init (tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id);
/external/bluetooth/bluedroid/bta/sys/
H A Dptim.c36 ** timer_id is the GKI timer id.
41 void ptim_init(tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id) argument
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/chromium_org/content/test/plugin/
H A Dplugin_schedule_timer_test.cc56 void ScheduleTimerTest::OnTimer(uint32 timer_id) { argument
62 int event_index = FindUnreceivedEvent(relative_time, timer_id);
76 int ScheduleTimerTest::FindUnreceivedEvent(int time, uint32 timer_id) { argument
80 timer_ids_[event.received_index] == timer_id) {
88 void OnTimerHelper(NPP id, uint32 timer_id) { argument
92 plugin_object->OnTimer(timer_id);
H A Dplugin_schedule_timer_test.h23 void OnTimer(uint32 timer_id);
59 int FindUnreceivedEvent(int time, uint32 timer_id);
H A Dplugin_npobject_lifetime_test.h34 static void CALLBACK TimerProc(HWND window, UINT message, UINT_PTR timer_id,
72 static void CALLBACK TimerProc(HWND window, UINT message, UINT_PTR timer_id,
H A Dplugin_get_javascript_url_test.h35 static void CALLBACK TimerProc(HWND window, UINT message, UINT_PTR timer_id,
H A Dplugin_npobject_lifetime_test.cc42 HWND window, UINT message, UINT_PTR timer_id,
144 HWND window, UINT message, UINT_PTR timer_id,
41 TimerProc( HWND window, UINT message, UINT_PTR timer_id, DWORD elapsed_milli_seconds) argument
143 TimerProc( HWND window, UINT message, UINT_PTR timer_id, DWORD elapsed_milli_seconds) argument
H A Dplugin_get_javascript_url_test.cc69 HWND window, UINT message, UINT_PTR timer_id, DWORD elapsed_time) {
68 TimerProc( HWND window, UINT message, UINT_PTR timer_id, DWORD elapsed_time) argument
/external/libnfc-nci/src/nfa/sys/
H A Dnfa_sys_ptim.c38 ** timer_id is the GKI timer id.
43 void nfa_sys_ptim_init (tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id) argument
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/
H A Dlpm.c86 timer_t timer_id; member in struct:__anon1048
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/
H A DphLlcNfc_Timer.c120 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_inde
[all...]
H A DphDnldNfc.c492 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;
1192 && ( NXP_INVALID_TIMER_ID != psDnldContext->timer_id )
1204 phOsalNfc_Timer_Start( psDnldContext->timer_id,
1212 DNLD_DEBUG(" DNLD : Timer %X Started ", psDnldContext->timer_id);
2696 if ( NXP_INVALID_TIMER_ID != psDnldContext->timer_id )
2698 phOsalNfc_Timer_Stop( psDnldContext->timer_id );
[all...]
H A DphLlcNfc_DataTypes.h476 uint32_t timer_id[PH_LLCNFC_MAX_TIMER_USED]; member in struct:phLlcNfc_Timerinfo
H A DphLibNfc_ndef_raw.c102 STATIC void CheckNdef_timer_cb(uint32_t timer_id, void *pContext);
1129 STATIC void CheckNdef_timer_cb(uint32_t timer_id, void *pContext) argument
1132 phOsalNfc_Timer_Stop(timer_id);
/external/chromium_org/content/child/npapi/
H A Dplugin_instance.cc450 void (*func)(NPP id, uint32 timer_id)) {
452 uint32 timer_id; local
453 timer_id = next_timer_id_;
461 timers_[timer_id] = info;
466 base::Bind(&PluginInstance::OnTimerCall, this, func, npp_, timer_id),
468 return timer_id;
471 void PluginInstance::UnscheduleTimer(uint32 timer_id) { argument
473 TimerMap::iterator it = timers_.find(timer_id);
485 void PluginInstance::OnTimerCall(void (*func)(NPP id, uint32 timer_id), argument
487 uint32 timer_id) {
448 ScheduleTimer(uint32 interval, NPBool repeat, void (*func)(NPP id, uint32 timer_id)) argument
[all...]
H A Dplugin_instance.h176 void (*func)(NPP id, uint32 timer_id));
178 void UnscheduleTimer(uint32 timer_id);
262 void OnTimerCall(void (*func)(NPP id, uint32 timer_id),
263 NPP id, uint32 timer_id);
H A Dplugin_host.cc1052 void (*func)(NPP id, uint32_t timer_id)) {
1060 void NPN_UnscheduleTimer(NPP id, uint32_t timer_id) { argument
1063 plugin->UnscheduleTimer(timer_id);
1049 NPN_ScheduleTimer(NPP id, uint32_t interval, NPBool repeat, void (*func)(NPP id, uint32_t timer_id)) argument
/external/bluetooth/bluedroid/main/
H A Dbte_main.c72 timer_t timer_id; member in struct:__anon1061
376 se.sigev_value.sival_ptr = &preload_retry_cb.timer_id;
380 status = timer_create(CLOCK_MONOTONIC, &se, &preload_retry_cb.timer_id);
393 status = timer_settime(preload_retry_cb.timer_id, 0, &ts, 0);
412 timer_delete(preload_retry_cb.timer_id);
/external/chromium_org/remoting/host/plugin/
H A Dhost_plugin.cc183 uint32_t timer_id = g_npnetscape_funcs->scheduletimer( variable
186 timers_[timer_id] = task;
197 static void NPDelayedTaskSpringboard(NPP npp, uint32_t timer_id) { argument
203 self->timers_.find(timer_id);
/external/chromium_org/chrome_frame/
H A Dhtml_window_impl.h64 long* timer_id) {
69 STDMETHOD(clearTimeout)(long timer_id) { argument
63 setTimeout(BSTR expression, long msec, VARIANT* language, long* timer_id) argument
/external/tcpdump/
H A Dtcpdump.c122 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_,

Completed in 613 milliseconds