HomeSort by relevance Sort by last modified time
    Searched refs:timer (Results 151 - 175 of 795) sorted by null

1 2 3 4 5 67 8 91011>>

  /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);
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
Timers.java 17 package com.android.deskclock.timer;
35 public static final String TIMER_INTENT_EXTRA = "timer.intent.extra";
74 TimerObj timer = it.next(); local
75 if (!timer.isInUse()) {
86 TimerObj timer = it.next(); local
87 if (timer.mState != TimerObj.STATE_TIMESUP) {
  /bionic/libc/upstream-netbsd/libc/isc/
ev_timers.c 67 evTimer * timer; member in struct:__anon725
251 ctx->cur->type == Timer &&
252 ctx->cur->u.timer.this == del) {
253 evPrintf(ctx, 8, "deferring delete of timer (executing)\n");
256 * clean up the timer.
284 evTimer *timer = id.opaque; local
289 if (heap_element(ctx->timers, timer->index) != timer)
293 timer->mode |= EV_TMR_RATE;
295 timer->mode &= ~EV_TMR_RATE
311 evTimer *timer = id.opaque; local
408 evTimer *timer = opaqueID.opaque; local
461 evTimer *timer; local
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/inspector/
performance-test.js 5 var Timer = function(test, callback)
16 Timer.prototype = {
96 InspectorTest.timer = new Timer(perfTest, callback);
97 InspectorTest.timer._runTest();
103 var timer = InspectorTest.timer;
105 if (timer)
106 cookie = timer.start(functionName);
109 if (timer)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
LinkLoader.cpp 62 void LinkLoader::linkLoadTimerFired(Timer<LinkLoader>* timer)
64 ASSERT_UNUSED(timer, timer == &m_linkLoadTimer);
68 void LinkLoader::linkLoadingErrorTimerFired(Timer<LinkLoader>* timer)
70 ASSERT_UNUSED(timer, timer == &m_linkLoadingErrorTimer);
  /external/chromium_org/third_party/WebKit/Source/core/platform/mock/
GeolocationClientMock.cpp 110 void GeolocationClientMock::permissionTimerFired(WebCore::Timer<GeolocationClientMock>* timer)
112 ASSERT_UNUSED(timer, timer == &m_permissionTimer);
170 void GeolocationClientMock::controllerTimerFired(Timer<GeolocationClientMock>* timer)
172 ASSERT_UNUSED(timer, timer == &m_controllerTimer);
  /external/chromium_org/third_party/WebKit/Source/modules/vibration/
NavigatorVibration.cpp 101 void NavigatorVibration::timerStartFired(Timer<NavigatorVibration>* timer)
103 ASSERT_UNUSED(timer, timer == &m_timerStart);
113 void NavigatorVibration::timerStopFired(Timer<NavigatorVibration>* timer)
115 ASSERT_UNUSED(timer, timer == &m_timerStop);
  /external/eigen/bench/
benchFFT.cpp 66 BenchTimer timer; local
67 timer.reset();
69 timer.start();
76 timer.stop();
80 double mflops = 5.*nfft*log2((double)nfft) / (1e6 * timer.value() / (double)nits );
94 cout << " NFFT=" << nfft << " " << (double(1e-6*nfft*nits)/timer.value()) << " MS/s " << mflops << "MFLOPS\n";
benchBlasGemm.cpp 107 Eigen::BenchTimer timer; local
117 timer.reset();
120 timer.start();
127 timer.stop();
130 std::cout << "cblas: " << timer.value() << " (" << 1e-3*floor(1e-6*nbmad/timer.value()) << " GFlops/s)\n";
132 std::cout << M << " : " << timer.value() << " ; " << 1e-3*floor(1e-6*nbmad/timer.value()) << "\n";
143 timer.reset();
146 timer.start()
    [all...]
  /external/chromium_org/cc/test/
scheduler_test_common.h 52 explicit FakeFrameRateController(scoped_refptr<cc::TimeSource> timer)
53 : cc::FrameRateController(timer) {}
  /external/jmdns/src/javax/jmdns/impl/tasks/
RecordReaper.java 7 import java.util.Timer;
38 * @see javax.jmdns.impl.tasks.DNSTask#start(java.util.Timer)
41 public void start(Timer timer) {
43 timer.schedule(this, DNSConstants.RECORD_REAPER_INTERVAL, DNSConstants.RECORD_REAPER_INTERVAL);
  /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;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
profile.py 35 # Sample timer for use with
41 #itimes = integer_timer # replace with C coded timer returning integers
92 def _get_time_times(timer=os.times):
93 t = timer()
104 def _get_time_resource(timer=resgetrusage):
105 t = timer()
152 def __init__(self, timer=None, bias=None):
162 if not timer:
164 self.timer = resgetrusage
168 self.timer = self.get_time = time.cloc
    [all...]
timeit.py 9 Library usage: see the Timer class.
16 -r/--repeat N: how many times to repeat the timer (default 3)
33 The difference in default timer function is because on Windows,
36 time() is much more precise. On either platform, the default timer
64 __all__ = ["Timer"]
71 # On Windows, the best timer is time.clock()
74 # On most other platforms the best timer is time.time()
78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt
95 """Create a timer function. Used if the "statement" is a callable."""
105 class Timer
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
profile.py 35 # Sample timer for use with
41 #itimes = integer_timer # replace with C coded timer returning integers
92 def _get_time_times(timer=os.times):
93 t = timer()
104 def _get_time_resource(timer=resgetrusage):
105 t = timer()
152 def __init__(self, timer=None, bias=None):
162 if not timer:
164 self.timer = resgetrusage
168 self.timer = self.get_time = time.cloc
    [all...]
timeit.py 9 Library usage: see the Timer class.
16 -r/--repeat N: how many times to repeat the timer (default 3)
33 The difference in default timer function is because on Windows,
36 time() is much more precise. On either platform, the default timer
64 __all__ = ["Timer"]
71 # On Windows, the best timer is time.clock()
74 # On most other platforms the best timer is time.time()
78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt
95 """Create a timer function. Used if the "statement" is a callable."""
105 class Timer
    [all...]
  /external/chromium/net/base/
cookie_monster_perftest.cc 29 PerfTimeLogger timer("Parsed_cookie_parse_cookies");
34 timer.Done();
40 PerfTimeLogger timer("Parsed_cookie_parse_big_cookies");
45 timer.Done();
58 PerfTimeLogger timer("Cookie_monster_add_single_host");
63 timer.Done();
86 PerfTimeLogger timer("Cookie_monster_add_many_hosts");
91 timer.Done();
155 PerfTimeLogger timer("Cookie_monster_query_domain_tree");
159 timer.Done()
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
Application.java 81 protected Timer timer = new NanoTimer(); field in class:Application
196 * Sets the Timer implementation that will be used for calculating
197 * frame times. By default, Application will use the Timer as returned
200 public void setTimer(Timer timer){
201 this.timer = timer;
203 if (timer != null) {
204 timer.reset();
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
CountDownTimerTest.java 63 CountDownTimer timer = shadowCountDownTimer.start(); local
64 assertThat(timer, notNullValue());
70 CountDownTimer timer = shadowCountDownTimer.start(); local
71 assertThat(timer, notNullValue());
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserScheduler.cpp 88 void HTMLParserScheduler::continueNextChunkTimerFired(Timer<HTMLParserScheduler>* timer)
90 ASSERT_UNUSED(timer, timer == &m_continueNextChunkTimer);
91 // FIXME: The timer class should handle timer priorities instead of this code.
92 // If a layout is scheduled, wait again to let the layout timer run first.
  /packages/apps/DeskClock/src/com/android/deskclock/
LabelDialogFragment.java 34 import com.android.deskclock.timer.TimerObj;
43 private static final String KEY_TIMER = "timer";
58 public static LabelDialogFragment newInstance(TimerObj timer, String label, String tag) {
62 args.putParcelable(KEY_TIMER, timer);
80 final TimerObj timer = bundle.getParcelable(KEY_TIMER); local
91 set(alarm, timer, tag);
110 set(alarm, timer, tag);
120 private void set(Alarm alarm, TimerObj timer, String tag) {
129 } else if (timer != null) {
130 set(timer, tag, label)
    [all...]
  /external/qemu/android/
looper-generic.c 46 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->clazz = (LoopTimerClass*) &glooptimer_class
423 GLoopTimer* timer = looper->activeTimers; local
441 GLoopTimer* timer; local
    [all...]
  /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/srtp/test/
replay_driver.c 183 clock_t timer; local
191 timer = clock();
206 timer = clock() - timer;
208 return (double) CLOCKS_PER_SEC * REPLAY_NUM_TRIALS / timer;

Completed in 633 milliseconds

1 2 3 4 5 67 8 91011>>