| /external/webkit/WebKit/wx/ |
| WebViewPrivate.h | 38 #include <wx/timer.h>
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
| workqueue.h | 15 #include <linux/timer.h> 27 struct timer_list timer; member in struct:work_struct 34 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data = (d), .timer = TIMER_INITIALIZER(NULL, 0, 0), } 40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
| workqueue.h | 15 #include <linux/timer.h> 27 struct timer_list timer; member in struct:work_struct 34 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data = (d), .timer = TIMER_INITIALIZER(NULL, 0, 0), } 40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
| workqueue.h | 15 #include <linux/timer.h> 27 struct timer_list timer; member in struct:work_struct 34 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data = (d), .timer = TIMER_INITIALIZER(NULL, 0, 0), } 40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
| workqueue.h | 15 #include <linux/timer.h> 27 struct timer_list timer; member in struct:work_struct 34 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data = (d), .timer = TIMER_INITIALIZER(NULL, 0, 0), } 40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/ |
| workqueue.h | 15 #include <linux/timer.h> 27 struct timer_list timer; member in struct:work_struct 34 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data = (d), .timer = TIMER_INITIALIZER(NULL, 0, 0), } 40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/ |
| workqueue.h | 15 #include <linux/timer.h> 27 struct timer_list timer; member in struct:work_struct 34 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data = (d), .timer = TIMER_INITIALIZER(NULL, 0, 0), } 40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
|
| /external/kernel-headers/original/linux/ |
| workqueue.h | 8 #include <linux/timer.h> 20 struct timer_list timer; member in struct:work_struct 31 .timer = TIMER_INITIALIZER(NULL, 0, 0), \ 54 init_timer(&(_work)->timer); \ 95 ret = del_timer_sync(&work->timer);
|
| /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/ |
| CredentialsCache.java | 27 private Timer timer; field in class:CredentialsCache 48 CredentialsCache (Timer timer) { 49 this.timer = timer; 85 this.timer.schedule(timeoutTask, cacheTime*1000);
|
| /bionic/libc/netbsd/isc/ |
| ev_timers.c | 63 evTimer * timer; member in struct:__anon485 239 ctx->cur->type == Timer && 240 ctx->cur->u.timer.this == del) { 241 printf("deferring delete of timer (executing)\n"); 244 * clean up the timer. 272 evTimer *timer = id.opaque; local 277 if (heap_element(ctx->timers, timer->index) != timer) 281 timer->mode |= EV_TMR_RATE; 283 timer->mode &= ~EV_TMR_RATE 299 evTimer *timer = id.opaque; local 396 evTimer *timer = opaqueID.opaque; local 449 evTimer *timer; local [all...] |
| /external/qemu/telephony/ |
| test2.c | 28 SysTimer timer = _timer; local 34 sys_timer_set( timer, now + DELAY, timer_func, timer ); 36 sys_timer_destroy( timer ); 196 SysTimer timer; local 202 /* create timer and register it */ 203 timer = sys_timer_create(); 204 sys_timer_set( timer, sys_time_ms() + INITIAL_DELAY, timer_func, timer );
|
| /external/stlport/test/eh/ |
| bug.cpp | 4 #include <boost/timer.hpp> 18 boost::timer t;
|
| /external/webkit/WebCore/platform/win/ |
| SharedTimerWin.cpp | 71 static HANDLE timer; member in namespace:WebCore 77 const int timerResolution = 1; // To improve timer resolution, we call timeBeginPeriod/timeEndPeriod with this value to increase timer resolution to 1ms. 78 const int highResolutionThresholdMsec = 16; // Only activate high-res timer for sub-16ms timers (Windows can fire timers at 16ms intervals without changing the system resolution). 79 const int stopHighResTimerInMsec = 300; // Stop high-res timer after 0.3 seconds to lessen power consumption (we don't use a smaller time since oscillating between high and low resolution breaks timer accuracy on XP). 180 // If the queue doesn't contains input events, we use a higher priorty timer event posting mechanism. 183 // Call PostMessage immediately if the timer is already expired, unless a paint is pending. 192 if (timer) 193 DeleteTimerQueueTimer(timerQueue, timer, 0) [all...] |
| /external/wpa_supplicant/wpa_gui/ |
| scanresults.ui.h | 21 delete timer; 30 timer = new QTimer(this); 31 connect(timer, SIGNAL(timeout()), SLOT(getResults())); 32 timer->start(10000, FALSE);
|
| /external/wpa_supplicant/wpa_gui-qt4/ |
| scanresults.h | 44 QTimer *timer; member in class:ScanResults
|
| scanresults.cpp | 40 delete timer; 55 timer = new QTimer(this); 56 connect(timer, SIGNAL(timeout()), SLOT(getResults())); 57 timer->start(10000, FALSE);
|
| /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/ |
| scanresults.ui.h | 21 delete timer; 30 timer = new QTimer(this); 31 connect(timer, SIGNAL(timeout()), SLOT(getResults())); 32 timer->start(10000, FALSE);
|
| /external/nist-sip/java/gov/nist/javax/sip/parser/ |
| Pipeline.java | 50 private Timer timer; field in class:Pipeline 112 this.timer.schedule(this.myTimerTask, this.readTimeout); 122 public Pipeline(InputStream pipe, int readTimeout, Timer timer) { 125 this.timer = timer;
|
| /external/bluetooth/glib/tests/ |
| slice-color.c | 63 GTimer *timer; local 76 timer = g_timer_new(); 81 g_timer_start (timer); 83 g_timer_stop (timer); 85 g_print ("Access-time = %fs\n", g_timer_elapsed (timer, NULL)); 94 g_timer_destroy (timer);
|
| /external/qemu/distrib/sdl-1.2.12/src/timer/os2/ |
| SDL_systimer.c | 99 HTIMER htimerEvent1 = 0; /* Timer handle */ 146 &htimerEvent1))) /* Timer handler (returned) */ 183 static SDL_Thread *timer = NULL; variable 201 timer = SDL_CreateThread(RunTimer, NULL); 202 if ( timer == NULL ) 210 if ( timer ) { 211 SDL_WaitThread(timer, NULL); 212 timer = NULL; 218 SDL_SetError("Internal logic error: OS/2 uses threaded timer");
|
| /build/tools/droiddoc/templates/assets/ |
| jquery-history.js | 7 var currentHash, previousNav, timer, hashTrim = /^.*#/; 49 if (!timer) { 50 timer = setInterval(historycheck, 100);
|
| /external/webkit/WebCore/platform/mock/ |
| GeolocationServiceMock.cpp | 98 void GeolocationServiceMock::timerFired(Timer<GeolocationServiceMock>* timer) 100 ASSERT_UNUSED(timer, timer == &m_timer);
|
| /device/samsung/crespo/alsa-lib/src/conf/ |
| alsa.conf | 106 defaults.timer.class 2 107 defaults.timer.sclass 0 108 defaults.timer.card 0 109 defaults.timer.device 0 110 defaults.timer.subdevice 0 528 # Timer interface 539 timer.default { 543 name defaults.timer.class 547 name defaults.timer.sclass 551 name defaults.timer.car [all...] |
| /external/chromium/sdch/open-vcdiff/src/ |
| rolling_hash_test.cc | 161 CycleTimer timer; local 162 timer.Start(); 164 timer.Stop(); 165 return static_cast<double>(timer.GetInUsec()) 173 CycleTimer timer; local 174 timer.Start(); 176 timer.Stop(); 177 return static_cast<double>(timer.GetInUsec())
|
| /external/dropbear/libtommath/etc/ |
| timer.asm | 1 ; x86 timer in NASM
|