HomeSort by relevance Sort by last modified time
    Searched full:timerid (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/libnfc-nxp/Linux_x86/
phOsalNfc_Timer.c 80 timer_msg->pCallBck(timer_msg->TimerId, timer_msg->pContext);
82 if ((timer_msg->TimerId >= MAX_NO_TIMERS) || (timer_msg->TimerId < 0))
84 printf("Bad TimerId=%d, should be <= to %d\n", timer_msg->TimerId, MAX_NO_TIMERS);
88 if(timers[timer_msg->TimerId].ptr != NULL)
90 phOsalNfc_FreeMemory(timers[timer_msg->TimerId].ptr);
91 timers[timer_msg->TimerId].ptr = NULL;
107 uint32_t timerid = (uint32_t)(sv.sival_int); local
109 if((timerid < MAX_NO_TIMERS)&&(timers[timerid].nIsStopped == 1)
172 uint32_t timerid; local
    [all...]
  /external/webkit/WebCore/manual-tests/
js-timers-beneath-modal-dialog.html 11 var timerId = setInterval(f, 100);
17 clearInterval(timerId);
  /external/webkit/WebKit/android/plugins/
PluginTimer.h 40 void (*proc)(NPP npp, uint32 timerID));
43 uint32 timerID() const { return m_timerID; }
47 static PluginTimer* Find(PluginTimer* list, uint32 timerID);
72 void (*proc)(NPP npp, uint32 timerID));
73 void unschedule(NPP instance, uint32 timerID);
PluginTimer.cpp 35 void (*timerFunc)(NPP npp, uint32 timerID))
73 // may return null if timerID is not found
74 PluginTimer* PluginTimer::Find(PluginTimer* list, uint32 timerID)
78 if (curr->m_timerID == timerID) {
96 void (*proc)(NPP npp, uint32 timerID))
106 return timer->timerID();
109 void PluginTimerList::unschedule(NPP instance, uint32 timerID)
116 PluginTimer* timer = PluginTimer::Find(m_list, timerID);
  /external/webkit/WebCore/platform/wince/
SharedTimerWince.cpp 48 static UINT timerID = TimerIdNone;
61 if (timerID != TimerIdNone)
64 if (timerID = TimerIdManual) {
110 if (timerID == TimerIdAuto) {
112 timerID = TimerIdNone;
117 timerID = TimerIdAuto;
118 else if (timerID != TimerIdManual)
124 if (timerID == TimerIdAuto)
127 timerID = TimerIdNone;
  /external/libnfc-nxp/src/
phOsalNfc_Timer.h 74 * \param[in] TimerId Timer Id for which callback is called.
77 typedef void (*ppCallBck_t)(uint32_t TimerId, void *pContext);
89 uint32_t TimerId;/**< Timer ID*/
131 * \param[in] TimerId valid timer ID obtained during timer creation.
142 * Application<<phOsalNfc [label="TIMERID"];
143 * Application=>phOsalNfc [label="phOsalNfc_Timer_Start(TIMERID, TIMEOUT, CB)", URL="\ref phOsalNfc_Timer_Start"];
149 void phOsalNfc_Timer_Start(uint32_t TimerId,
161 * \param[in] TimerId valid timer ID obtained suring timer creation.
167 * Application<<phOsalNfc [label="TIMERID"];
168 * Application=>phOsalNfc [label="phOsalNfc_Timer_Start(TIMERID, TIMEOUT, CB)",URL="\ref phOsalNfc_Timer_Start"]
    [all...]
phLlcNfc_Timer.c 75 uint32_t TimerId,
85 uint32_t TimerId
93 uint32_t TimerId,
180 uint32_t timerid = 0; local
211 timerid = ps_timer_info->timer_id[PH_LLCNFC_CONNECTION_TO_INDEX];
248 timerid = ps_timer_info->timer_id[PH_LLCNFC_GUARDTIMER];
304 timerid = ps_timer_info->timer_id[PH_LLCNFC_ACKTIMER];
321 PH_LLCNFC_DEBUG("OSAL START TIMER CALLED TIMER ID : 0x%02X\n", timerid);
322 phOsalNfc_Timer_Start (timerid, timer_resolution, Callback, NULL);
346 uint32_t timerid = 0 local
502 uint32_t timerid = 0; local
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
QTMovieWinTimer.cpp 38 static UINT_PTR timerID;
54 } else if (message == WM_TIMER && wParam == timerID) {
114 timerID = SetTimer(timerWindowHandle, timerFiredMessage, intervalInMS, 0);
119 if (timerID) {
120 KillTimer(timerWindowHandle, timerID);
121 timerID = 0;
  /external/webkit/WebCore/platform/win/
SharedTimerWin.cpp 65 static UINT timerID;
200 if (timerID) {
201 KillTimer(timerWindowHandle, timerID);
202 timerID = 0;
205 timerID = SetTimer(timerWindowHandle, sharedTimerID, intervalInMS, 0);
217 if (timerID) {
218 KillTimer(timerWindowHandle, timerID);
219 timerID = 0;
  /external/qemu/distrib/sdl-1.2.12/src/timer/win32/
SDL_systimer.c 113 static UINT timerID = 0;
133 timerID = timeSetEvent(TIMER_RESOLUTION,1,HandleAlarm,0,TIME_PERIODIC);
134 if ( ! timerID ) {
143 if ( timerID ) {
144 timeKillEvent(timerID);
  /external/qemu/distrib/sdl-1.2.12/src/timer/wince/
SDL_systimer.c 149 static UINT timerID = 0;
169 timerID = timeSetEvent(TIMER_RESOLUTION,1,HandleAlarm,0,TIME_PERIODIC);
170 if ( ! timerID ) {
179 if ( timerID ) {
180 timeKillEvent(timerID);
  /external/webkit/WebCore/inspector/
InspectorTimelineAgent.cpp 112 void InspectorTimelineAgent::didInstallTimer(int timerId, int timeout, bool singleShot)
115 record.set("data", TimelineRecordFactory::createTimerInstallData(m_frontend, timerId, timeout, singleShot));
119 void InspectorTimelineAgent::didRemoveTimer(int timerId)
122 record.set("data", TimelineRecordFactory::createGenericTimerData(m_frontend, timerId));
126 void InspectorTimelineAgent::willFireTimer(int timerId)
128 pushCurrentRecord(TimelineRecordFactory::createGenericTimerData(m_frontend, timerId), TimerFireTimelineRecordType);
TimelineRecordFactory.cpp 60 ScriptObject TimelineRecordFactory::createGenericTimerData(InspectorFrontend* frontend, int timerId)
63 data.set("timerId", timerId);
67 ScriptObject TimelineRecordFactory::createTimerInstallData(InspectorFrontend* frontend, int timerId, int timeout, bool singleShot)
70 data.set("timerId", timerId);
InspectorTimelineAgent.h 92 void didInstallTimer(int timerId, int timeout, bool singleShot);
93 void didRemoveTimer(int timerId);
94 void willFireTimer(int timerId);
TimelineRecordFactory.h 51 static ScriptObject createGenericTimerData(InspectorFrontend*, int timerId);
53 static ScriptObject createTimerInstallData(InspectorFrontend*, int timerId, int timeout, bool singleShot);
  /bionic/libc/include/
time.h 127 extern int timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue);
128 extern int timer_gettime(timer_t timerid, struct itimerspec *value);
129 extern int timer_getoverrun(timer_t timerid);
  /development/ndk/platforms/android-3/include/
time.h 111 extern int timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue);
112 extern int timer_gettime(timer_t timerid, struct itimerspec *value);
113 extern int timer_getoverrun(timer_t timerid);
  /development/ndk/platforms/android-8/include/
time.h 109 extern int timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue);
110 extern int timer_gettime(timer_t timerid, struct itimerspec *value);
111 extern int timer_getoverrun(timer_t timerid);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
time.h 109 extern int timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue);
110 extern int timer_gettime(timer_t timerid, struct itimerspec *value);
111 extern int timer_getoverrun(timer_t timerid);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
time.h 109 extern int timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue);
110 extern int timer_gettime(timer_t timerid, struct itimerspec *value);
111 extern int timer_getoverrun(timer_t timerid);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
time.h 109 extern int timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue);
110 extern int timer_gettime(timer_t timerid, struct itimerspec *value);
111 extern int timer_getoverrun(timer_t timerid);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
time.h 109 extern int timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue);
110 extern int timer_gettime(timer_t timerid, struct itimerspec *value);
111 extern int timer_getoverrun(timer_t timerid);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
time.h 109 extern int timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue);
110 extern int timer_gettime(timer_t timerid, struct itimerspec *value);
111 extern int timer_getoverrun(timer_t timerid);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
time.h 109 extern int timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue);
110 extern int timer_gettime(timer_t timerid, struct itimerspec *value);
111 extern int timer_getoverrun(timer_t timerid);
  /external/webkit/WebCore/platform/qt/
SharedTimerQt.cpp 101 if (!m_timerFunction || ev->timerId() != m_timer.timerId())

Completed in 922 milliseconds

1 2 3