HomeSort by relevance Sort by last modified time
    Searched defs:timer (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /external/wpa_supplicant/wpa_gui-qt4/
scanresults.h 44 QTimer *timer; member in class:ScanResults
wpagui.h 66 QTimer *timer; member in class:WpaGui
  /external/webkit/WebCore/platform/
Timer.cpp 28 #include "Timer.h"
45 // This allows us to efficiently determine which timer needs to fire the soonest.
46 // Then we set a single shared system timer to fire at that time.
48 // When a timer's "next fire time" changes, we need to move it around in the priority queue.
71 TimerBase* timer() const { return m_timer; } function in class:WebCore::TimerHeapElement
87 : m_index(-1), m_timer(o.timer())
93 TimerBase* t = o.timer();
107 double aFireTime = a.timer()->m_nextFireTime;
108 double bFireTime = b.timer()->m_nextFireTime;
114 unsigned difference = a.timer()->m_heapInsertionOrder - b.timer()->m_heapInsertionOrder
    [all...]
ThreadTimers.cpp 32 #include "Timer.h"
47 static MainThreadSharedTimer* timer = new MainThreadSharedTimer; local
48 return timer;
104 TimerBase* timer = m_timerHeap.first(); local
105 timer->m_nextFireTime = 0;
106 timer->heapDeleteMin();
108 double interval = timer->repeatInterval();
109 timer->setNextFireTime(interval ? fireTime + interval : 0);
111 // Once the timer has been fired, it may be deleted, so do nothing else with it after this point.
112 timer->fired()
    [all...]
  /external/qemu/telephony/
test1.c 22 SysTimer timer = _timer; local
28 sys_timer_set( timer, now + 2000, timer_func, timer );
30 sys_timer_destroy( timer );
36 SysTimer timer; local
41 /* create timer and register it */
42 timer = sys_timer_create();
43 sys_timer_set( timer, sys_time_ms() + 1000, timer_func, timer );
  /external/webkit/WebKit/qt/tests/
util.h 41 QTimer timer; local
42 QSignalSpy timeoutSpy(&timer, SIGNAL(timeout()));
44 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
45 timer.setSingleShot(true);
46 timer.start(timeout);
  /bionic/libc/kernel/arch-sh/asm/
heartbeat.h 15 #include <linux/timer.h>
23 struct timer_list timer; member in struct:heartbeat_data
  /external/qemu/distrib/sdl-1.2.12/src/timer/dummy/
SDL_systimer.c 48 static SDL_Thread *timer = NULL; variable
65 timer = SDL_CreateThread(RunTimer, NULL);
66 if ( timer == NULL )
74 if ( timer ) {
75 SDL_WaitThread(timer, NULL);
76 timer = NULL;
82 SDL_SetError("Internal logic error: threaded timer in use");
  /external/webkit/WebKit/qt/tests/benchmarks/loading/
tst_loading.cpp 38 QTimer timer; local
39 QSignalSpy timeoutSpy(&timer, SIGNAL(timeout()));
41 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
42 timer.setSingleShot(true);
43 timer.start(timeout);
  /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/kernel/common/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)
  /development/ndk/platforms/android-3/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/asm-arm/arch/
mtd-xip.h 33 volatile xip_omap_mpu_timer_regs_t* timer = xip_omap_mpu_timer_base(nr); local
34 return timer->read_tim;
54 * the system timer tick period. This should put the CPU into idle mode
  /external/qemu/distrib/sdl-1.2.12/src/timer/beos/
SDL_systimer.c 52 static SDL_Thread *timer = NULL; variable
69 timer = SDL_CreateThread(RunTimer, NULL);
70 if ( timer == NULL )
78 if ( timer ) {
79 SDL_WaitThread(timer, NULL);
80 timer = NULL;
86 SDL_SetError("Internal logic error: BeOS uses threaded timer");
  /external/qemu/distrib/sdl-1.2.12/src/timer/dc/
SDL_systimer.c 57 static SDL_Thread *timer = NULL; variable
74 timer = SDL_CreateThread(RunTimer, NULL);
75 if ( timer == NULL )
83 if ( timer ) {
84 SDL_WaitThread(timer, NULL);
85 timer = NULL;
91 SDL_SetError("Internal logic error: DC uses threaded timer");
  /external/qemu/distrib/sdl-1.2.12/src/timer/epoc/
SDL_systimer.cpp 69 static SDL_Thread *timer = NULL; variable
88 timer = SDL_CreateThread(RunTimer, NULL);
89 if ( timer == NULL )
97 if ( timer ) {
98 SDL_WaitThread(timer, NULL);
99 timer = NULL;
105 SDL_SetError("Internal logic error: Epoc uses threaded timer");
  /external/srec/portable/src/
ptimer.c 44 * Creates a new timer object.
46 ESR_ReturnCode PTimerCreate(PTimer **timer)
50 if (timer == NULL)
65 *timer = tmp;
69 ESR_ReturnCode PTimerDestroy(PTimer *timer)
71 if (timer == NULL) return ESR_INVALID_ARGUMENT;
72 FREE(timer);
77 * Starts the timer. This sets the reference time from which all new elapsed
79 * useful to pause the timer.
81 ESR_ReturnCode PTimerStart(PTimer *timer)
158 timer_t timer; member in struct:PTimer_t
    [all...]
  /external/webkit/WebCore/platform/cf/
RunLoopTimerCF.cpp 43 RunLoopTimerBase* timer = static_cast<RunLoopTimerBase*>(context); local
44 timer->fired();
58 ASSERT_WITH_MESSAGE(m_timer, "Timer must have one of the start functions called before calling schedule().");
  /external/webkit/WebCore/platform/haiku/
SharedTimerHaiku.cpp 74 static SharedTimerHaiku* timer; local
76 if (!timer) {
78 timer = new SharedTimerHaiku();
79 looper->AddCommonFilter(timer);
82 return timer;
  /external/webkit/WebCore/platform/qt/
SharedTimerQt.cpp 73 static QPointer<SharedTimerQt> timer; local
74 if (!timer)
75 timer = new SharedTimerQt(QCoreApplication::instance());
77 return timer;
  /external/webkit/WebKit/android/plugins/
PluginTimer.cpp 98 PluginTimer* timer = new PluginTimer(&m_list, instance, repeat, proc); local
102 timer->startRepeating(dinterval);
104 timer->startOneShot(dinterval);
106 return timer->timerID();
111 // Although it looks like simply deleting the timer would work here
116 PluginTimer* timer = PluginTimer::Find(m_list, timerID); local
117 if (timer)
118 timer->unschedule();
  /external/webkit/WebKit/qt/tests/benchmarks/painting/
tst_painting.cpp 38 QTimer timer; local
39 QSignalSpy timeoutSpy(&timer, SIGNAL(timeout()));
41 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
42 timer.setSingleShot(true);
43 timer.start(timeout);
  /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)

Completed in 1079 milliseconds

1 2 3 4 5