/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/Source/WebCore/manual-tests/ |
js-timers-beneath-modal-dialog.html | 11 var timerId = setInterval(f, 100); 17 clearInterval(timerId);
|
/external/webkit/Source/WebCore/platform/wince/ |
SharedTimerWinCE.cpp | 45 static UINT timerID = TimerIdNone; 55 if (timerID != TimerIdNone) 58 if (timerID = TimerIdManual) { 102 if (timerID == TimerIdAuto) { 104 timerID = TimerIdNone; 109 timerID = TimerIdAuto; 110 else if (timerID != TimerIdManual) 116 if (timerID == TimerIdAuto) 119 timerID = TimerIdNone;
|
/external/webkit/Source/WebKit/android/plugins/ |
PluginTimer.cpp | 36 void (*timerFunc)(NPP npp, uint32_t timerID)) 83 // may return null if timerID is not found 84 PluginTimer* PluginTimer::Find(PluginTimer* list, uint32_t timerID) 88 if (curr->m_timerID == timerID) { 110 void (*proc)(NPP npp, uint32_t timerID)) 120 return timer->timerID(); 123 void PluginTimerList::unschedule(NPP instance, uint32_t timerID) 130 PluginTimer* timer = PluginTimer::Find(m_list, timerID);
|
PluginTimer.h | 43 void (*proc)(NPP npp, uint32_t timerID)); 46 uint32_t timerID() const { return m_timerID; } 50 static PluginTimer* Find(PluginTimer* list, uint32_t timerID); 75 void (*proc)(NPP npp, uint32_t timerID)); 76 void unschedule(NPP instance, uint32_t timerID);
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/fx/ |
content.js | 28 var timerId = timers[type]; 29 var eventInProgress = (timerId > 0); 31 clearTimeout(timerId);
|
/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]; 309 timerid = ps_timer_info->timer_id[PH_LLCNFC_ACKTIMER]; 326 PH_LLCNFC_DEBUG("OSAL START TIMER CALLED TIMER ID : 0x%02X\n", timerid); 327 phOsalNfc_Timer_Start (timerid, timer_resolution, Callback, NULL); 351 uint32_t timerid = 0 local 510 uint32_t timerid = 0; local [all...] |
/external/webkit/Source/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/Source/WebCore/platform/graphics/qt/ |
ContextShadowQt.cpp | 55 int timerId; 60 , timerId(-1) 92 if (timerId >= 0) 93 killTimer(timerId); 94 timerId = startTimer(BufferPurgeDelay * 1000); 99 if (event->timerId() == timerId) { 100 killTimer(timerId);
|
/external/webkit/Source/WebCore/platform/win/ |
SharedTimerWin.cpp | 66 static UINT timerID; 201 if (timerID) { 202 KillTimer(timerWindowHandle, timerID); 203 timerID = 0; 206 timerID = SetTimer(timerWindowHandle, sharedTimerID, intervalInMS, 0); 218 if (timerID) { 219 KillTimer(timerWindowHandle, timerID); 220 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/Source/WebCore/inspector/ |
TimelineRecordFactory.cpp | 79 PassRefPtr<InspectorObject> TimelineRecordFactory::createGenericTimerData(int timerId) 82 data->setNumber("timerId", timerId); 86 PassRefPtr<InspectorObject> TimelineRecordFactory::createTimerInstallData(int timerId, int timeout, bool singleShot) 89 data->setNumber("timerId", timerId);
|
InspectorTimelineAgent.h | 97 void didInstallTimer(int timerId, int timeout, bool singleShot); 98 void didRemoveTimer(int timerId); 99 void willFireTimer(int timerId);
|
/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);
|
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/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);
|