| /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/chromium/base/ |
| timer_unittest.cc | 8 #include "base/timer.h" 95 // This should run before the timer expires. 98 // Now start the timer. 141 // This should run before the timer expires. 144 // Now start the timer. 177 // If Delay is never called, the timer shouldn't go off. 179 base::DelayTimer<DelayTimerTarget> timer( 194 base::DelayTimer<DelayTimerTarget> timer( 196 timer.Reset(); 207 ResetHelper(base::DelayTimer<DelayTimerTarget>* timer, [all...] |
| /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...] |
| /device/samsung/crespo/alsa-lib/src/timer/ |
| timer_hw.c | 2 * Timer Interface - main file 36 #define SNDRV_FILE_TIMER ALSA_DEVICE_DIRECTORY "timer" 59 static int snd_timer_hw_nonblock(snd_timer_t *timer, int nonblock) 62 assert(timer); 63 if ((flags = fcntl(timer->poll_fd, F_GETFL)) < 0) 69 if (fcntl(timer->poll_fd, F_SETFL, flags) < 0) 74 static int snd_timer_hw_async(snd_timer_t *timer, int sig, pid_t pid) 79 assert(timer); 80 fd = timer->poll_fd; 300 int _snd_timer_hw_open(snd_timer_t **timer, char *name [all...] |
| /external/webkit/WebCore/page/ |
| DOMTimer.cpp | 87 // DOMTimer constructor links the new timer into a list of ActiveDOMObjects held by the 'context'. 88 // The timer is deleted when context is deleted (DOMTimer::contextDestroyed) or explicitly via DOMTimer::removeById(), 89 // or if it is a one-time timer and it has fired (DOMTimer::fired). 90 DOMTimer* timer = new DOMTimer(context, action, timeout, singleShot); local 94 timelineAgent->didInstallTimer(timer->m_timeoutId, timeout, singleShot); 97 return timer->m_timeoutId; 134 // No access to member variables after this point, it can delete the timer. 143 // Delete timer before executing the action for one-shot timers.
|
| /device/samsung/crespo/alsa-lib/include/ |
| asoundlib.h | 51 #include <alsa/timer.h>
|
| /external/webkit/WebCore/platform/android/ |
| GeolocationServiceAndroid.h | 30 #include "Timer.h" 62 void timerFired(Timer<GeolocationServiceAndroid>* timer); 71 Timer<GeolocationServiceAndroid> m_timer;
|
| /external/wpa_supplicant/wpa_gui-qt4/ |
| wpagui.h | 66 QTimer *timer; member in class:WpaGui
|
| /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Auth/ |
| authSm.h | 83 TI_HANDLE timer; member in struct:__anon16583
|
| /external/v8/src/ |
| counters.h | 178 // Start the timer. 181 // Stop the timer and record the results. 184 // Returns true if the timer is running. 200 // Start the timer. 203 // Stop the timer and record the results. 206 // Returns true if the timer is running. 225 explicit HistogramTimerScope(HistogramTimer* timer) : 226 timer_(timer) {
|
| /external/chromium/net/disk_cache/ |
| disk_cache_perftest.cc | 13 #include "base/timer.h" 58 PerfTimeLogger timer("Write disk cache entries"); 85 timer.Done(); 109 PerfTimeLogger timer(message); 130 timer.Done(); 146 PerfTimeLogger timer("Hash disk cache keys"); 151 timer.Done();
|
| /external/qemu/ |
| buffered_file.c | 16 #include "qemu-timer.h" 38 QEMUTimer *timer; member in struct:QEMUFileBuffered 177 qemu_del_timer(s->timer); 178 qemu_free_timer(s->timer); 228 qemu_mod_timer(s->timer, qemu_get_clock(rt_clock) + 100); 263 s->timer = qemu_new_timer(rt_clock, buffered_rate_tick, s); 265 qemu_mod_timer(s->timer, qemu_get_clock(rt_clock) + 100);
|
| shaper.c | 14 #include "qemu-timer.h" 49 * in this interval is placed in a queue, associated to a timer 51 * there are different (queue/timer/rate) values for the input and output 105 QEMUTimer* timer; /* QEMU timer */ member in struct:NetShaperRec_ 126 qemu_del_timer(shaper->timer); 127 qemu_free_timer(shaper->timer); 128 shaper->timer = NULL; 133 /* this function is called when the shaper's timer expires */ 151 /* reprogram timer if needed * 387 QEMUTimer* timer; member in struct:NetDelayRec_ [all...] |
| /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/ |
| mainKeysSm.c | 110 pHandle->timer = os_timerCreate(hOs, mainKeys_sessionTimeout, pHandle); 111 if (pHandle->timer == NULL) 121 os_timerDestroy(hOs, pHandle->timer); 131 os_timerDestroy(hOs, pHandle->timer); 142 os_timerDestroy(hOs, pHandle->timer); 332 os_timerStop(pMainKeys->hOs, pMainKeys->timer); 333 os_timerDestroy(pMainKeys->hOs, pMainKeys->timer); 670 * Starts unicast & broadcast key SMs and session timer. 697 os_timerStart(pMainKeys->hOs, pMainKeys->timer, pMainKeys->keysTimeout, FALSE); 711 * Stops unicast & broadcast key SMs and session timer [all...] |
| /external/qemu/android/ |
| hw-sensors.c | 20 #include "qemu-timer.h" 123 * - each timer tick, this code sends sensor reports in the following 155 QEMUTimer* timer; member in struct:HwSensorClient 185 /* remove timer, if any */ 186 if (cl->timer) { 187 qemu_del_timer(cl->timer); 188 qemu_free_timer(cl->timer); 189 cl->timer = NULL; 208 cl->timer = qemu_new_timer(vm_clock, _hwSensorClient_tick, cl); 258 * to the HAL module, and re-arm the timer if necessar [all...] |
| /external/qemu/distrib/sdl-1.2.12/src/timer/ |
| SDL_timer.c | 38 /* Data used for a thread-based timer */ 53 /* Set whether or not the timer should use a thread. 54 This should not be called while the timer subsystem is running. 61 SDL_SetError("Timer already initialized"); 118 struct _SDL_TimerID timer; local 126 printf("Executing timer %p (thread = %d)\n", 129 timer = *t; 131 ms = timer.cb(timer.interval, timer.param) [all...] |
| /external/qemu/hw/ |
| goldfish_timer.c | 13 #include "qemu-timer.h" 33 QEMUTimer *timer; member in struct:timer_state 42 qemu_put_be64(f, s->now); /* in case the kernel is in the middle of a timer read */ 69 qemu_mod_timer(s->timer, alarm); 102 qemu_mod_timer(s->timer, alarm); 111 qemu_del_timer(s->timer); 184 //qemu_mod_timer(s->timer, alarm); 244 timer_state.timer = qemu_new_timer(vm_clock, goldfish_timer_tick, &timer_state);
|
| /system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/QOS/ |
| trafficAdmControl.c | 97 /* Timer functions */ 165 /* allocate OS timer AC BE */ 166 pTrafficAdmCtrl->timer[QOS_AC_BE] = os_timerCreate(hOs, trafficAdmCtrl_timeoutAcBE, pTrafficAdmCtrl); 167 if (pTrafficAdmCtrl->timer[QOS_AC_BE] == NULL) 173 /* allocate OS timer AC BK */ 174 pTrafficAdmCtrl->timer[QOS_AC_BK] = os_timerCreate(hOs, trafficAdmCtrl_timeoutAcBK, pTrafficAdmCtrl); 175 if (pTrafficAdmCtrl->timer[QOS_AC_BK] == NULL) 178 os_timerDestroy(pTrafficAdmCtrl->hOs, pTrafficAdmCtrl->timer[QOS_AC_BE]); 182 /* allocate OS timer AC VI */ 183 pTrafficAdmCtrl->timer[QOS_AC_VI] = os_timerCreate(hOs, trafficAdmCtrl_timeoutAcVI, pTrafficAdmCtrl) [all...] |
| /external/bluetooth/glib/tests/ |
| timeloop-closure.c | 82 GTimer *timer = g_timer_new(); local 93 val = g_timer_elapsed (timer, NULL) * 1000; 96 g_timer_destroy (timer);
|
| timeloop.c | 81 GTimer *timer = g_timer_new(); local 92 val = g_timer_elapsed (timer, NULL) * 1000; 95 g_timer_destroy (timer);
|
| /external/qemu/slirp/ |
| tcp_timer.c | 41 static struct tcpcb *tcp_timers(register struct tcpcb *tp, int timer); 128 * TCP timer processing. 131 tcp_timers(register struct tcpcb *tp, int timer) 137 switch (timer) { 154 * Retransmission timer went off. Message has not 219 * If timing a segment in this window, stop the timer. 258 * Persistence timer into zero window. 270 * Keep-alive timer went off; send something
|
| /external/qemu/slirp-android/ |
| tcp_timer.c | 41 static struct tcpcb *tcp_timers(register struct tcpcb *tp, int timer); 128 * TCP timer processing. 131 tcp_timers(register struct tcpcb *tp, int timer) 137 switch (timer) { 154 * Retransmission timer went off. Message has not 219 * If timing a segment in this window, stop the timer. 258 * Persistence timer into zero window. 270 * Keep-alive timer went off; send something
|
| /external/webkit/WebKit/gtk/webkit/ |
| webkitdownload.cpp | 74 GTimer* timer; member in struct:_WebKitDownloadPrivate 151 // need to make sure timer is non-NULL. 152 if (priv->timer) 153 g_timer_destroy(priv->timer); 475 g_return_if_fail(priv->timer == NULL); 486 priv->timer = g_timer_new(); 510 // to make sure timer is non-NULL. 511 if (priv->timer) 512 g_timer_stop(priv->timer); 822 if (!priv->timer) [all...] |
| /external/webkit/WebKit/mac/WebView/ |
| WebViewEventHandling.mm | 115 // to start the autoscroll timer if appropriate. 220 NSTimer *timer = _private->autoscrollTimer; 224 [timer invalidate]; 225 [timer release];
|
| /bionic/libc/kernel/common/linux/sunrpc/ |
| xprt.h | 87 void (*timer)(struct rpc_task *task); member in struct:rpc_xprt_ops 139 struct timer_list timer; member in struct:rpc_xprt
|