HomeSort by relevance Sort by last modified time
    Searched refs:timer (Results 26 - 50 of 330) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/iptables/include/linux/netfilter/
xt_IDLETIMER.h 4 * Header file for Xtables timer target module.
42 struct idletimer_tg *timer __attribute__((aligned(8))); member in struct:idletimer_tg_info
  /external/kernel-headers/original/linux/sunrpc/
types.h 12 #include <linux/timer.h>
  /external/openssl/crypto/
o_time.h 64 struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result);
  /external/qemu/distrib/sdl-1.2.12/src/timer/unix/
SDL_systimer.c 171 struct itimerval timer; local
173 timer.it_value.tv_sec = (SDL_alarm_interval/1000);
174 timer.it_value.tv_usec = (SDL_alarm_interval%1000)*1000;
175 timer.it_interval.tv_sec = (SDL_alarm_interval/1000);
176 timer.it_interval.tv_usec = (SDL_alarm_interval%1000)*1000;
177 setitimer(ITIMER_REAL, &timer, NULL);
183 struct itimerval timer; local
185 SDL_memset(&timer, 0, (sizeof timer));
186 setitimer(ITIMER_REAL, &timer, NULL)
195 static SDL_Thread *timer = NULL; variable
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/sunrpc/
types.h 15 #include <linux/timer.h>
  /external/webkit/Source/WebKit/android/plugins/
PluginTimer.cpp 68 // ensure the timer cannot be deleted until this method completes
74 // remove the timer if it is a one-shot timer (!m_repeat) or if is a
75 // repeating timer that has been unscheduled. In either case we must
80 deref(); // mark the timer for deletion as it is no longer needed
112 PluginTimer* timer = new PluginTimer(&m_list, instance, repeat, proc); local
116 timer->startRepeating(dinterval);
118 timer->startOneShot(dinterval);
120 return timer->timerID();
125 // Although it looks like simply deleting the timer would work her
130 PluginTimer* timer = PluginTimer::Find(m_list, timerID); local
    [all...]
  /external/webkit/Source/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/Source/WebCore/platform/qt/
SharedTimerQt.cpp 86 static QPointer<SharedTimerQt> timer; local
87 if (!timer) {
88 timer = new SharedTimerQt();
89 timer->connect(QCoreApplication::instance(), SIGNAL(aboutToQuit()), SLOT(destroy()));
92 return timer;
  /external/webkit/Source/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/webkit/Source/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);
  /external/webkit/Source/WebKit2/UIProcess/API/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);
  /external/qemu/telephony/
sysdeps_posix.c 346 SysTimer timer = _s_free_timers; local
347 assert( timer != NULL && "too many timers allocated" );
348 _s_free_timers = timer->next;
349 timer->next = NULL;
350 return timer;
354 void sys_timer_unset( SysTimer timer )
356 if (timer->callback != NULL) {
363 if (node == timer) {
369 timer->next = NULL;
370 timer->callback = NULL
486 SysTimer timer = _s_timers; local
511 SysTimer timer; local
    [all...]
sysdeps.h 70 extern void sys_timer_set( SysTimer timer, SysTime when, SysCallback callback, void* opaque );
71 extern void sys_timer_unset( SysTimer timer );
72 extern void sys_timer_destroy( SysTimer timer );
  /external/dropbear/libtommath/etc/
makefile 19 nasm -f coff timer.asm
20 $(CC) -DX86_TIMER $(CFLAGS) tune.c timer.o $(LIBNAME) -o tune86
24 nasm -f gnuwin32 timer.asm
25 $(CC) -DX86_TIMER $(CFLAGS) tune.c timer.o $(LIBNAME) -o tune86
29 nasm -f elf -DUSE_ELF timer.asm
30 $(CC) -DX86_TIMER $(CFLAGS) tune.c timer.o $(LIBNAME) -o tune86l
  /external/qemu/distrib/sdl-1.2.12/src/timer/riscos/
SDL_systimer.c 37 /* Timer SDL_arraysize(Timer ),start/reset time */
39 /* Timer running function */
132 /* Non-threaded version of timer */
154 to detect if we need to check the timer */
182 /* Threaded version of timer - based on code for linux */
188 static SDL_Thread *timer = NULL; variable
205 timer = SDL_CreateThread(RunTimer, NULL);
206 if ( timer == NULL )
214 if ( timer ) {
    [all...]
  /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
  /bionic/libc/kernel/arch-sh/asm/
push-switch.h 15 #include <linux/timer.h>

Completed in 3464 milliseconds

12 3 4 5 6 7 8 91011>>