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

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/AcpiTables/rtsm_ve-aemv8a/
gtdt.asl 33 * [GTDT] Generic Timer Description Table
73 [0004] Virtual Timer Interrupt : 0000001b
88 [0004] Platform Timer Count : 00000001
89 [0004] Platform Timer Offset : 0000005C
91 /* Memory-mapped GT (Generic Timer) structures */
96 [0004] Timer Count : 00000001
97 [0004] Timer Offset : 00000010
104 [0004] Timer Interrupt : 00000029 /* 25+16 */
105 [0004] Timer Flags (decoded below) : 00000000 /* Active high level-sensitive */
108 /* No virtual timer */
    [all...]
  /external/llvm/include/llvm/Support/
Timer.h 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
22 class Timer;
70 /// Timer - This class is used to track the amount of time spent between
73 /// By default, the Timer will print the amount of time it has captured to
74 /// standard error when the last timer is destroyed, otherwise it is printed
78 class Timer {
82 bool Running; // Is the timer currently running?
83 bool Triggered; // Has the timer ever been triggered?
84 TimerGroup *TG; // The TimerGroup this Timer is in.
86 Timer **Prev, *Next; // Doubly linked list of timers in the group
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Timer.h 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
10 // This file defines three classes: Timer, TimeRegion, and TimerGroup,
27 class Timer;
71 /// print - Print the current timer to standard error, and reset the "Started"
76 /// Timer - This class is used to track the amount of time spent between
79 /// By default, the Timer will print the amount of time it has captured to
80 /// standard error when the laster timer is destroyed, otherwise it is printed
84 class Timer {
88 TimerGroup *TG; // The TimerGroup this Timer is in.
90 Timer **Prev, *Next; // Doubly linked list of timers in the group
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
timer.cc 0 // timer.cc -- helper class for time accounting
33 #include "timer.h"
38 // Class Timer
40 Timer::Timer()
49 Timer::start()
56 Timer::stamp(int n)
93 Timer::get_time(TimeStats *now)
108 Timer::TimeStats
109 Timer::get_elapsed_time(
    [all...]
parameters.h 31 class Timer;
61 set_timer(Timer* timer);
77 // Return the timer object.
78 Timer*
79 timer() const function in class:gold::Parameters
192 Timer* timer_;
212 set_parameters_timer(Timer* timer);
  /external/libchrome/base/timer/
timer.h 5 // OneShotTimer and RepeatingTimer provide a simple timer API. As the names
10 // OneShotTimer and RepeatingTimer both cancel the timer when they go out of
14 // receive timer events.
36 // allows you to easily defer the timer event until the timer delay passes once
47 // IMPORTANT: If you change timer code, make sure that all tests (including
70 class BASE_EXPORT Timer {
72 // Construct a timer in repeating or one-shot mode. Start or SetTaskInfo must
75 Timer(bool retain_user_task, bool is_repeating);
77 // Construct a timer with retained task info
    [all...]
  /system/core/base/include/android-base/
chrono_utils.h 37 class Timer {
39 Timer() : start_(boot_clock::now()) {}
49 std::ostream& operator<<(std::ostream& os, const Timer& t);
  /packages/apps/DeskClock/src/com/android/deskclock/data/
TimerModel.java 41 import com.android.deskclock.timer.TimerKlaxon;
42 import com.android.deskclock.timer.TimerService;
51 import static com.android.deskclock.data.Timer.State.EXPIRED;
52 import static com.android.deskclock.data.Timer.State.RESET;
55 * All {@link Timer} data is accessed via this model.
84 /** Update timer notification when locale changes. */
95 /** The listeners to notify when a timer is added, updated or removed. */
98 /** Delegate that builds platform-specific timer notifications. */
103 * ids in this collection. If a timer was already expired when the app was started its id will
116 private List<Timer> mTimers
216 Timer timer = new Timer(-1, RESET, length, length, Timer.UNUSED, Timer.UNUSED, length, local
    [all...]
  /external/llvm/unittests/Support/
TimerTest.cpp 1 //===- unittests/TimerTest.cpp - Timer tests ------------------------------===//
10 #include "llvm/Support/Timer.h"
35 TEST(Timer, Additivity) {
36 Timer T1("T1");
52 TEST(Timer, CheckIfTriggered) {
53 Timer T1("T1");
  /frameworks/rs/tests/lldb/tests/harness/
util_timer.py 15 '''Timer utility'''
22 class Timer(object):
23 '''A Timer utility to execute a callback after a certain interval.'''
26 '''Initialise the Timer without starting it.
48 '''Checks whether the timer is executing.
51 boolean, true if the timer is currently running, false otherwise
56 '''Starts the timer.
59 self, the Timer instance
62 RuntimeError: if the timer is already running
65 raise RuntimeError('Timer already running'
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
FakeUid.java 21 import android.os.BatteryStats.Timer;
49 public Timer getAggregatedPartialWakelockTimer() {
54 public ArrayMap<String, ? extends Timer> getSyncStats() {
59 public ArrayMap<String, ? extends Timer> getJobStats() {
187 public Timer getAudioTurnedOnTimer() {
192 public Timer getVideoTurnedOnTimer() {
197 public Timer getFlashlightTurnedOnTimer() {
202 public Timer getCameraTurnedOnTimer() {
207 public Timer getForegroundActivityTimer() {
212 public Timer getForegroundServiceTimer()
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/
Timer.java 24 public class Timer {
26 * The name of the timer, the phase of the program it is intended to time.
42 * Initialise a new timer with the provided name.
44 public Timer(String name) {
65 * Log the elapsed time this timer has recorded.
  /external/mockito/src/main/java/org/mockito/internal/util/
Timer.java 9 public class Timer {
14 public Timer(long durationMillis) {
20 * Informs whether the timer is still counting down.
28 * Starts the timer count down.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TimerTest.java 22 import java.util.Timer;
39 * Timer is not cancelled.
50 // Should we terminate the timer at a specific timerCounter?
53 // The timer we belong to
54 Timer timer = null; field in class:TimerTest.TimerTestTask
59 public TimerTestTask(Timer t) {
60 timer = t;
70 if (terminateCount == timerCounter && timer != null) {
71 timer.cancel()
    [all...]
TimerTaskTest.java 20 import java.util.Timer;
26 * Timer is not cancelled.
79 Timer t = null;
87 t = new Timer();
94 t = new Timer();
113 t = new Timer();
123 t = new Timer();
138 t = new Timer();
150 t = new Timer();
174 Timer t = null
    [all...]
  /external/pdfium/testing/
embedder_test_timer_handling_delegate.h 25 struct Timer {
43 std::pair<int, Timer>(msecs + fake_elapsed_msecs_, {id, msecs, fn}));
68 Timer t = iter->second;
71 std::pair<int, Timer>(fake_elapsed_msecs_ + t.interval, t));
72 t.fn(t.id); // Fire timer.
81 std::multimap<int, Timer> expiry_to_timer_map_; // Keyed by timeout.
  /external/pdfium/xfa/fwl/
cfwl_spinbutton.h 37 class Timer : public CFWL_Timer {
39 explicit Timer(CFWL_SpinButton* pToolTip);
40 ~Timer() override {}
44 friend class CFWL_SpinButton::Timer;
70 CFWL_SpinButton::Timer m_Timer;
  /external/autotest/frontend/client/src/autotest/common/
CommonClassFactory.java 4 import com.google.gwt.user.client.Timer;
12 Timer timer = new Timer() { local
20 timer.scheduleRepeating(10 * 60 * 1000);
  /external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
DrawingCanvas.java 6 import javax.swing.Timer;
12 private final Timer timer; field in class:DrawingCanvas
17 timer = new Timer(1000/60, loop);
18 timer.setRepeats(true);
25 timer.start();
30 timer.stop();
  /external/ImageMagick/MagickCore/
timer.h 16 MagickCore timer methods.
38 } Timer;
42 Timer
  /external/libchrome/components/timers/
alarm_timer_chromeos.cc 85 // alarm timer and then watches that file descriptor to see when it can be read
86 // without blocking, indicating that the timer has fired.
89 // available on a MessageLoopForIO but there is no guarantee the timer is going
90 // to be created on one. To get around this, the timer has a dedicated thread
92 // timer.
101 // Returns true if the system timer managed by this delegate is capable of
105 // Resets the timer to fire after |delay| has passed. Cancels any
109 // Stops the currently running timer. It should be safe to call this even if
110 // the timer is not running.
113 // Sets a hook that will be called when the timer fires and a task has bee
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/Include/Library/
OmapLib.h 27 IN UINTN Timer
33 IN UINTN TImer
  /device/linaro/bootloader/edk2/EmulatorPkg/TimerDxe/
Timer.inf 2 # Emu Emulation Timer Architectural Protocol Driver as defined in DXE CIS
33 Timer.c
34 Timer.h
  /device/linaro/bootloader/edk2/Omap35xxPkg/Include/Library/
OmapLib.h 27 IN UINTN Timer
33 IN UINTN TImer
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
DebugTimer.c 2 Code for debug timer to support debug agent library implementation.
18 Initialize CPU local APIC timer.
20 @param[out] TimerFrequency Local APIC timer frequency returned.
21 @param[in] DumpFlag If TRUE, dump Local APIC timer's parameter.
23 @return 32-bit Local APIC timer init count.
39 // Cpu Local Apic timer interrupt frequency, it is set to 0.1s
51 // Disable Debug Timer interrupt to avoid it is delivered before Debug Port
57 DEBUG ((EFI_D_INFO, "Debug Timer: FSB Clock = %d\n", PcdGet32(PcdFSBClock)));
58 DEBUG ((EFI_D_INFO, "Debug Timer: Divisor = %d\n", ApicTimerDivisor));
59 DEBUG ((EFI_D_INFO, "Debug Timer: Frequency = %d\n", ApicTimerFrequency));
    [all...]

Completed in 3838 milliseconds

12 3 4 5 6 7 8 91011>>