HomeSort by relevance Sort by last modified time
    Searched refs:Timer (Results 51 - 75 of 426) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
Timer.java 15 public final class Timer {
27 public Timer start() {
54 public Timer setTimingPeriod(long timingPeriod) {
70 public String toString(Timer other) {
  /external/pdfium/xfa/fwl/
cfwl_caret.cpp 28 m_pTimer(new CFWL_Caret::Timer(this)),
97 CFWL_Caret::Timer::Timer(CFWL_Caret* pCaret) : CFWL_Timer(pCaret) {}
99 void CFWL_Caret::Timer::Run(CFWL_TimerInfo* pTimerInfo) {
  /external/swiftshader/third_party/LLVM/lib/Support/
Timer.cpp 1 //===-- Timer.cpp - Interval Timing Support -------------------------------===//
14 #include "llvm/Support/Timer.h"
52 cl::desc("File to append -stats and -timer output to"),
100 // Timer Implementation
103 void Timer::init(StringRef N) {
104 assert(TG == 0 && "Timer already initialized");
111 void Timer::init(StringRef N, TimerGroup &tg) {
112 assert(TG == 0 && "Timer already initialized");
119 Timer::~Timer() {
    [all...]
  /cts/tests/sensor/src/android/hardware/cts/helpers/
SuspendStateMonitor.java 5 import java.util.Timer;
24 Timer sleepMonitoringTimer = new Timer();
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/ArmV7/
ArmV7ArchTimerSupport.S 52 mrc p15, 0, r0, c14, c1, 0 @ Read CNTK_CTL (Timer PL1 Control Register)
56 mcr p15, 0, r0, c14, c1, 0 @ Write to CNTK_CTL (Timer PL1 Control Register)
60 mrc p15, 0, r0, c14, c2, 0 @ Read CNTP_TVAL (PL1 physical timer value register)
64 mcr p15, 0, r0, c14, c2, 0 @ Write to CNTP_TVAL (PL1 physical timer value register)
68 mrc p15, 0, r0, c14, c2, 1 @ Read CNTP_CTL (PL1 Physical Timer Control Register)
72 mcr p15, 0, r0, c14, c2, 1 @ Write to CNTP_CTL (PL1 Physical Timer Control Register)
76 mrc p15, 0, r0, c14, c3, 0 @ Read CNTV_TVAL (Virtual Timer Value register)
80 mcr p15, 0, r0, c14, c3, 0 @ Write to CNTV_TVAL (Virtual Timer Value register)
84 mrc p15, 0, r0, c14, c3, 1 @ Read CNTV_CTL (Virtual Timer Control Register)
88 mcr p15, 0, r0, c14, c3, 1 @ Write to CNTV_CTL (Virtual Timer Control Register)
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Smm/DxeSmm/QncSmmDispatcher/QNC/
QNCSmmPeriodicTimer.c 2 File to contain all the hardware specific stuff for the Periodical Timer dispatch protocol.
81 UINTN NumChildren; // number of children using this timer
83 UINTN CurrentSetting; // interval this timer is set at right now (index into interval table)
115 // Determine which timer this child is using
128 // (2) the timer interval table is corrupt
144 // Figure out which timer the child is requesting and
197 // The timer will be restarted on the "ClearSource" call.
222 SUPPORTED_TIMER Timer;
228 // Find the minimum required interval for each timer
230 for (Timer = (SUPPORTED_TIMER)0; Timer < NUM_TIMERS; Timer++) {
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/data/
TimerDAO.java 21 import com.android.deskclock.data.Timer.State;
29 import static com.android.deskclock.data.Timer.State.RESET;
32 * This class encapsulates the transfer of data between {@link Timer} domain objects and their
37 /** Key to a preference that stores the set of timer ids. */
40 /** Key to a preference that stores the id to assign to the next timer. */
43 /** Prefix for a key to a preference that stores the state of the timer. */
46 /** Prefix for a key to a preference that stores the original timer length at creation. */
49 /** Prefix for a key to a preference that stores the total timer length with additions. */
52 /** Prefix for a key to a preference that stores the last start time of the timer. */
55 /** Prefix for a key to a preference that stores the epoch time when the timer last started. *
    [all...]
  /external/llvm/lib/Support/
Timer.cpp 1 //===-- Timer.cpp - Interval Timing Support -------------------------------===//
14 #include "llvm/Support/Timer.h"
49 cl::desc("File to append -stats and -timer output to"),
95 // Timer Implementation
98 void Timer::init(StringRef N) {
102 void Timer::init(StringRef N, TimerGroup &tg) {
103 assert(!TG && "Timer already initialized");
110 Timer::~Timer() {
138 void Timer::startTimer()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
Throttle.java 22 import java.util.Timer;
44 private static Timer TIMER = new Timer();
47 private final Timer mTimer;
80 this(name, callback, handler, minTimeout, maxTimeout, Clock.INSTANCE, TIMER);
86 int maxTimeout, Clock clock, Timer timer) {
93 mTimer = timer;
148 * Timer task called on timeout
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerItemFragment.java 17 package com.android.deskclock.timer;
29 import com.android.deskclock.data.Timer;
41 public static TimerItemFragment newInstance(Timer timer) {
44 args.putInt(KEY_TIMER_ID, timer.getId());
59 final Timer timer = getTimer(); local
60 if (timer == null) {
68 view.update(timer);
74 * @return {@code true} iff the timer is in a state that requires continuous update
79 final Timer timer = getTimer(); local
98 final Timer timer = getTimer(); local
    [all...]
  /device/google/contexthub/firmware/os/core/
timer.c 24 #include <timer.h>
32 #define MAX_INTERNAL_EVENTS 32 //also used for external app timer() calls
35 osLog(LOG_INFO, "%s " fmt, "[timer]", ##__VA_ARGS__); \
40 struct Timer {
54 static struct Timer mTimers[MAX_TIMERS];
62 static struct Timer *timFindTimerById(uint32_t timId) /* no locks taken. be careful what you do with this */
78 static void timCallFunc(struct Timer *tim)
92 ERROR_PRINT("Could not enqueue private timer event\n");
107 struct Timer *tim;
146 //we loop while loop does something, or while (if next timer exists), it is due by the time loop ends, or platform code fails to set an alarm to wake us for i
    [all...]
  /prebuilts/go/darwin-x86/src/time/
sleep.go 15 // Must be in sync with ../runtime/time.go:/^type timer
43 // The Timer type represents a single event.
44 // When the Timer expires, the current time will be sent on C,
45 // unless the Timer was created by AfterFunc.
46 // A Timer must be created with NewTimer or AfterFunc.
47 type Timer struct {
52 // Stop prevents the Timer from firing.
53 // It returns true if the call stops the timer, false if the timer has already
58 // To prevent a timer created with NewTimer from firing after a call to Stop
    [all...]
  /prebuilts/go/linux-x86/src/time/
sleep.go 15 // Must be in sync with ../runtime/time.go:/^type timer
43 // The Timer type represents a single event.
44 // When the Timer expires, the current time will be sent on C,
45 // unless the Timer was created by AfterFunc.
46 // A Timer must be created with NewTimer or AfterFunc.
47 type Timer struct {
52 // Stop prevents the Timer from firing.
53 // It returns true if the call stops the timer, false if the timer has already
58 // To prevent a timer created with NewTimer from firing after a call to Stop
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/fuzzers/
Fuzzer.java 21 import dexfuzz.Timer;
73 private Timer totalTimer = new Timer("Total Time");
74 private Timer timerDexInput = new Timer("DEX Input");
75 private Timer timerProgGen = new Timer("Program Generation");
76 private Timer timerMutation = new Timer("Mutation Time");
77 private Timer timerDexOutput = new Timer("DEX Output")
    [all...]
  /external/autotest/client/common_lib/cros/graphite/
stats.py 135 class Timer(statsd.Timer):
136 """Wrapper around statsd.Timer."""
140 statsd.Timer.stop(self, subname)
151 statsd.Timer.send(self, subname, value)
165 self.Timer = Timer
statsd_mock.py 33 class Timer(stats_es_mock.mock_class_base):
34 """Mock class for statsd.Timer."""
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
ServRespTestCase.java 18 import java.util.Timer;
34 private Timer mTimer;
42 mTimer = new Timer(true);
  /developers/build/prebuilts/gradle/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/fragments/
CounterFragment.java 31 import java.util.Timer;
41 private Timer mAnimationTimer;
76 mAnimationTimer = new Timer();
  /developers/samples/android/wearable/wear/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/fragments/
CounterFragment.java 31 import java.util.Timer;
41 private Timer mAnimationTimer;
76 mAnimationTimer = new Timer();
  /development/samples/browseable/JumpingJack/src/com.example.android.wearable.jumpingjack/fragments/
CounterFragment.java 31 import java.util.Timer;
41 private Timer mAnimationTimer;
76 mAnimationTimer = new Timer();
  /external/autotest/server/site_tests/firmware_ECPowerButton/
firmware_ECPowerButton.py 7 from threading import Timer
53 Timer(3, self.servo.power_key, [0.001]).start()
65 Timer(wake_delay,
  /system/core/init/
util.h 50 class Timer {
52 Timer() : start_(boot_clock::now()) {
68 std::ostream& operator<<(std::ostream& os, const Timer& t);
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Event/
Event.h 37 /// Timer event information
67 TIMER_EVENT_INFO Timer;
89 Initializes timer support.
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Timer.c 2 TCP timer related functions.
31 Timeout handler for TCP retransmission timer.
42 Timeout handler for window probe timer.
53 Timeout handler for keepalive timer.
64 Timeout handler for FIN_WAIT_2 timer.
75 Timeout handler for 2MSL timer.
125 "because conenction timer timeout for TCB %p\n", Tcb));
133 "connection timer timeout for TCB %p\n", Tcb));
145 Timeout handler for TCP retransmission timer.
196 Timeout handler for window probe timer.
    [all...]
  /external/libchrome/base/timer/
mock_timer.h 8 #include "base/timer/timer.h"
12 class BASE_EXPORT MockTimer : public Timer {
21 // base::Timer implementation.

Completed in 2101 milliseconds

1 23 4 5 6 7 8 91011>>