Searched defs:timer (Results 151 - 175 of 247) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/platform/
H A DTimer.cpp43 // This allows us to efficiently determine which timer needs to fire the soonest.
44 // Then we set a single shared system timer to fire at that time.
46 // When a timer's "next fire time" changes, we need to move it around in the priority queue.
78 inline TimerHeapReference& TimerHeapReference::operator=(TimerBase* timer) argument
80 m_reference = timer;
81 Vector<TimerBase*>& heap = timer->timerHeap();
83 timer->m_heapIndex = &m_reference - heap.data();
89 TimerBase* timer = b; local
90 return *this = timer;
293 // Temporarily force this timer t
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DAssociatedURLLoader.cpp274 // If an error has already been received, start a timer to report it to the client
280 void AssociatedURLLoader::ClientAdapter::notifyError(Timer<ClientAdapter>* timer) argument
282 ASSERT_UNUSED(timer, timer == &m_errorTimer);
/external/chromium_org/v8/src/
H A Dcounters.h10 #include "src/base/platform/elapsed-timer.h"
234 // Start the timer.
237 // Stop the timer and record the results.
240 // Returns true if the timer is running.
247 base::ElapsedTimer* timer() { return &timer_; } function in class:v8::internal::HistogramTimer
261 explicit HistogramTimerScope(HistogramTimer* timer, argument
264 : timer_(timer),
266 if (timer_->timer()->IsStarted() && allow_nesting) {
273 : timer_(timer) {
H A Dcpu-profiler.cc111 base::ElapsedTimer timer; local
112 timer.Start();
120 } while (!timer.HasExpired(period_));
/external/libnfc-nci/src/nfa/int/
H A Dnfa_snep_int.h184 TIMER_LIST_ENT timer; /* timer for client */ member in struct:__anon24250
H A Dnfa_cho_int.h202 TIMER_LIST_ENT timer; /* timer for rx handover message */ member in struct:__anon24096
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dhist.h194 void (*timer)(void *arg); member in struct:hist_browser_timer
/external/qemu/android/
H A Dlooper-generic.c46 static void glooper_addActiveTimer(GLooper* looper, GLoopTimer* timer);
47 static void glooper_delActiveTimer(GLooper* looper, GLoopTimer* timer);
48 static void glooper_addTimer(GLooper* looper, GLoopTimer* timer);
49 static void glooper_delTimer(GLooper* looper, GLoopTimer* timer);
66 /* Stop the timer if it was active */
70 /* Another way to stop a timer */
83 if (timeout_ms == DURATION_INFINITE) { /* another way to stop the timer */
119 LoopTimer* timer,
134 timer->impl = tt;
135 timer
118 glooper_timer_init(Looper* looper, LoopTimer* timer, LoopTimerFunc callback, void* opaque) argument
423 GLoopTimer* timer = looper->activeTimers; local
441 GLoopTimer* timer; local
[all...]
H A Dshaper.c14 #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 timer_del(shaper->timer);
127 timer_free(shaper->timer);
128 shaper->timer = NULL;
133 /* this function is called when the shaper's timer expires */
151 /* reprogram timer i
387 QEMUTimer* timer; member in struct:NetDelayRec_
[all...]
H A Dhw-sensors.c22 #include "qemu/timer.h"
149 * - each timer tick, this code sends sensor reports in the following
182 QEMUTimer* timer; member in struct:HwSensorClient
212 /* remove timer, if any */
213 if (cl->timer) {
214 timer_del(cl->timer);
215 timer_free(cl->timer);
216 cl->timer = NULL;
235 cl->timer = timer_new(QEMU_CLOCK_VIRTUAL, SCALE_NS, _hwSensorClient_tick, cl);
285 * to the HAL module, and re-arm the timer i
[all...]
/external/srec/audio/AudioIn/UNIX/src/
H A Daudioin.c152 static struct timeval timer; /* timer used by select to relinquish cpu times */ variable in typeref:struct:timeval
525 timer.tv_sec = 0;
526 timer.tv_usec = 200;
527 select ( 0, NULL, NULL, NULL, &timer );
767 timer.tv_sec = 0;
768 timer.tv_usec = 200;
769 select ( 0, NULL, NULL, NULL, &timer );
1306 timer.tv_sec = 0;
1307 timer
[all...]
/external/bluetooth/bluedroid/bta/sys/
H A Dbta_sys.h176 UINT8 timer; /* GKI timer id */ member in struct:__anon977
/external/chromium_org/chrome/browser/chromeos/system/
H A Dautomatic_reboot_manager_unittest.cc172 void VerifyTimerIsStopped(const Timer* timer) const;
173 void VerifyTimerIsRunning(const Timer* timer,
525 const Timer* timer) const {
526 if (timer)
527 EXPECT_FALSE(timer->IsRunning());
531 const Timer* timer,
533 ASSERT_TRUE(timer);
534 EXPECT_TRUE(timer->IsRunning());
536 timer->GetCurrentDelay().ToInternalValue());
573 // Verifies that the idle timer i
530 VerifyTimerIsRunning( const Timer* timer, const base::TimeDelta& delay) const argument
[all...]
/external/chromium_org/chrome/browser/metrics/variations/
H A Dvariations_service.cc17 #include "base/timer/elapsed_timer.h"
606 const base::ElapsedTimer timer; local
626 UMA_HISTOGRAM_TIMES("Variations.SimulateSeed.Duration", timer.Elapsed());
/external/chromium_org/content/browser/renderer_host/media/
H A Dvideo_capture_manager.cc152 // loop, i.e. IO loop. Pass a timer for UMA histogram collection.
551 base::ElapsedTimer* timer,
556 timer->Elapsed());
549 OnDevicesInfoEnumerated( MediaStreamType stream_type, base::ElapsedTimer* timer, const DeviceInfos& new_devices_info_cache) argument
/external/chromium_org/net/websockets/
H A Dwebsocket_stream_test.cc19 #include "base/timer/mock_timer.h"
20 #include "base/timer/timer.h"
118 scoped_ptr<base::Timer> timer = scoped_ptr<base::Timer>()) {
122 CreateAndConnectStream(socket_url, sub_protocols, origin, timer.Pass());
133 scoped_ptr<base::Timer> timer =
142 timer.Pass());
150 scoped_ptr<base::Timer> timer = scoped_ptr<base::Timer>()) {
152 CreateAndConnectStream(socket_url, sub_protocols, origin, timer.Pass());
165 scoped_ptr<base::Timer> timer) {
162 CreateAndConnectStream(const std::string& socket_url, const std::vector<std::string>& sub_protocols, const std::string& origin, scoped_ptr<base::Timer> timer) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DMainThreadWebSocketChannel.cpp486 void MainThreadWebSocketChannel::resumeTimerFired(Timer<MainThreadWebSocketChannel>* timer) argument
488 ASSERT_UNUSED(timer, timer == &m_resumeTimer);
518 void MainThreadWebSocketChannel::closingTimerFired(Timer<MainThreadWebSocketChannel>* timer) argument
521 ASSERT_UNUSED(timer, &m_closingTimer == timer);
/external/chromium_org/third_party/libsrtp/srtp/test/
H A Dsrtp_driver.c495 clock_t timer; local
526 timer = clock();
544 timer = clock() - timer;
555 num_trials * CLOCKS_PER_SEC / timer;
564 clock_t timer; local
585 timer = clock();
590 timer = clock() - timer;
600 return (double) num_trials * CLOCKS_PER_SEC / timer;
[all...]
/external/chromium_org/third_party/skia/bench/
H A Dnanobench.cpp58 DEFINE_int32(overheadLoops, 100000, "Loops to estimate timer overhead.");
60 "Loop until timer overhead is at most this fraction of our measurments.");
91 WallTimer timer; local
92 timer.start();
105 timer.end();
106 return timer.fWall;
175 // Later we'll just start and stop the timer once but loop N times.
176 // We'll pick N to make timer overhead negligible:
666 log->timer("min_ms", stats.min);
667 log->timer("median_m
[all...]
/external/chromium_org/v8/tools/profviz/
H A Dprofviz.js195 (Date.now() - timer) / 1000 + "ms.\n\n");
229 timer = Date.now();
285 var timer; variable
/external/oprofile/opcontrol/
H A Dopcontrol.cpp135 int timer; variable
155 {"timer", 0, &timer, 1},
187 " --timer timer-based profiling\n"
648 if (timer) {
671 if (num_events != 0 || timer != 0) {
751 if (timer == 0) {
752 /* If not in timer mode, disable unused counters */
/external/qemu/telephony/
H A Dsysdeps_posix.c346 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
376 sys_timer_set( SysTimer timer, SysTime when, SysCallback callback, void* opaque ) argument
486 SysTimer timer = _s_timers; local
511 SysTimer timer; local
[all...]
/external/skia/bench/
H A Dbenchmain.cpp533 Timer timer(contextHelper);
535 Timer timer; local
553 if (loopsPerIter >= (1<<30) || timer.fWall > FLAGS_maxMs) {
568 timer.start();
610 timer.truncatedEnd();
617 timer.end();
621 frameIntervalTime += timer.fWall;
632 // timer.fWall, loopsPerFrame);
636 const double current = timer.fWall / loopsPerIter;
639 converged = HasConverged(previous, current, timer
[all...]
/external/srtp/test/
H A Dsrtp_driver.c465 clock_t timer; local
496 timer = clock();
512 timer = clock() - timer;
517 num_trials * CLOCKS_PER_SEC / timer;
526 clock_t timer; local
547 timer = clock();
552 timer = clock() - timer;
556 return (double) num_trials * CLOCKS_PER_SEC / timer;
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.util_1.0.200.v20100503.jar ... equinox.internal.util.impl.tpt.timer.TimerFactory timer private org.osgi.framework. ...

Completed in 857 milliseconds

12345678910