HomeSort by relevance Sort by last modified time
    Searched refs:Timer (Results 1 - 25 of 578) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/perfetto/include/perfetto/base/
watchdog_noop.h 27 class Timer {
30 Timer() {}
31 Timer(const Timer&) {}
32 ~Timer() {}
35 Timer CreateFatalTimer(uint32_t /*ms*/) { return Timer(); }
watchdog_posix.h 34 // Handle to the timer set to crash the program. If the handle is dropped,
35 // the timer is removed so the program does not crash.
36 class Timer {
38 ~Timer();
39 Timer(Timer&&) noexcept;
44 explicit Timer(uint32_t ms);
45 Timer(const Timer&) = delete;
46 Timer& operator=(const Timer&) = delete
    [all...]
  /external/swiftshader/src/Common/
Timer.hpp 22 class Timer
25 Timer();
27 ~Timer();
Timer.cpp 15 #include "Timer.hpp"
40 Timer::Timer()
44 Timer::~Timer()
48 double Timer::seconds()
59 int64_t Timer::ticks()
72 int64_t Timer::counter()
85 int64_t Timer::frequency()
  /packages/apps/DeskClock/src/com/android/deskclock/data/
TimerListener.java 25 * @param timer the timer that was added
27 void timerAdded(Timer timer);
30 * @param before the timer state before the update
31 * @param after the timer state after the update
33 void timerUpdated(Timer before, Timer after);
36 * @param timer the timer that was remove
    [all...]
Timer.java 30 import static com.android.deskclock.data.Timer.State.EXPIRED;
31 import static com.android.deskclock.data.Timer.State.MISSED;
32 import static com.android.deskclock.data.Timer.State.PAUSED;
33 import static com.android.deskclock.data.Timer.State.RESET;
34 import static com.android.deskclock.data.Timer.State.RUNNING;
37 * A read-only domain object representing a countdown timer.
39 public final class Timer {
72 /** The minimum duration of a timer. */
75 /** The maximum duration of a new timer created via the user interface. */
81 /** A unique identifier for the timer. *
    [all...]
  /external/tensorflow/tensorflow/stream_executor/
timer.cc 16 #include "tensorflow/stream_executor/timer.h"
27 Timer::Timer(StreamExecutor *parent)
31 Timer::~Timer() { parent_->DeallocateTimer(this); }
33 uint64 Timer::Microseconds() const { return implementation_->Microseconds(); }
35 uint64 Timer::Nanoseconds() const { return implementation_->Nanoseconds(); }
timer.h 32 // An interval timer, suitable for use in timing the operations which occur in
36 // the system. Any operation that a user attempts to perform by using a Timer
39 class Timer {
41 // Instantiate a timer tied to parent as a platform executor.
42 explicit Timer(StreamExecutor *parent);
44 // Deallocates any timer resources that the parent StreamExecutor has bestowed
46 ~Timer();
48 // Returns the elapsed number of microseconds for a completed timer.
52 // Returns the elapsed number of nanoseconds for a completed timer.
62 // timer
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
timer.h 0 // timer.h -- helper class for time accounting -*- C++ -*-
29 class Timer
45 Timer();
65 Timer(const Timer&);
66 Timer& operator=(const Timer&);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/Timer/
Timer.c 14 Timer.c
18 Timer Architectural Protocol GUID as defined in Tiano
23 #include EFI_ARCH_PROTOCOL_DEFINITION (Timer)
27 EFI_GUID_STRING(&gEfiTimerArchProtocolGuid, "Timer", "Timer Arch Protocol");
  /device/generic/goldfish/dhcp/client/
timer.h 24 class Timer {
26 // Create a timer, initially the timer is already expired.
27 Timer();
29 // Set the timer to expire in |seconds| seconds.
32 // Return true if the timer has expired.
34 // Get the remaining time on the timer in milliseconds.
timer.cpp 17 #include "timer.h"
28 Timer::Timer() : mExpires(0) {
31 void Timer::expireSeconds(uint64_t seconds) {
35 bool Timer::expired() const {
39 uint64_t Timer::remainingMillis() const {
  /external/skia/tools/viewer/
StatsLayer.h 20 typedef int Timer;
22 Timer addTimer(const char* label, SkColor color, SkColor labelColor = 0);
23 void beginTiming(Timer);
24 void endTiming(Timer);
25 double getLastTime(Timer);
  /external/skqp/tools/viewer/
StatsLayer.h 20 typedef int Timer;
22 Timer addTimer(const char* label, SkColor color, SkColor labelColor = 0);
23 void beginTiming(Timer);
24 void endTiming(Timer);
25 double getLastTime(Timer);
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
SyncTimer.c 2 SMM Timer feature support
28 Initialize Timer for SMM AP Sync.
55 Start Timer for SMM AP Sync.
69 Check if the SMM AP Sync timer is timeout.
71 @param Timer The start timer from the begin.
77 IN UINT64 Timer
85 // We need to consider the case that CurrentTimer is equal to Timer
86 // when some timer runs too slow and CPU runs fast. We think roll over
93 if (CurrentTimer <= Timer) {
    [all...]
  /external/libchrome/base/timer/
timer.cc 5 #include "base/timer/timer.h"
22 // Timer in the thread's default task runner. It also handles the following
25 // - abandoned (orphaned) by Timer.
28 explicit BaseTimerTaskInternal(Timer* timer)
29 : timer_(timer) {
34 // destructed. If so, don't leave Timer with a dangling pointer
45 // *this will be deleted by the task runner, so Timer needs to
49 // Although Timer should not call back into *this, let's clea
51 Timer* timer = timer_; local
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/TimerDxe/
TimerDxe.inf 2 # NT Emulation Timer Architectural Protocol Driver as defined in DXE CIS
4 # This Timer module uses an NT Thread to simulate the timer-tick driven
5 # timer service. In the future, the Thread creation should possibly be
21 BASE_NAME = Timer
35 Timer.c
36 Timer.h
  /device/linaro/bootloader/edk2/Omap35xxPkg/Library/OmapLib/
OmapLib.c 38 IN UINTN Timer
41 switch (Timer) {
60 IN UINTN Timer
63 if ((Timer < 1) || (Timer > 12)) {
68 return 36 + Timer;
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Event/
Timer.c 2 Core Timer Services
31 // Timer functions
34 Inserts the timer event.
36 @param Event Points to the internal structure of timer event
52 // Get the timer's trigger time
54 TriggerTime = Event->Timer.TriggerTime;
57 // Insert the timer into the timer database in assending sorted order
60 Event2 = CR (Link, IEVENT, Timer.Link, EVENT_SIGNATURE);
62 if (Event2->Timer.TriggerTime > TriggerTime) {
    [all...]
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/8254TimerDxe/
8254Timer.inf 2 # 8254 timer driver that provides Timer Arch protocol.
17 BASE_NAME = Timer
18 MODULE_UNI_FILE = Timer.uni
37 Timer.h
38 Timer.c
  /external/mockito/src/test/java/org/mockito/internal/util/
TimerTest.java 22 Timer timer = new Timer(duration); local
25 timer.start();
28 Assertions.assertThat(timer.isCounting()).isTrue();
34 Timer timer = new Timer(0); local
35 timer.start();
41 Assertions.assertThat(timer.isCounting()).isFalse()
    [all...]
  /external/pdfium/xfa/fwl/
cfwl_caret.h 38 class Timer : public CFWL_Timer {
40 explicit Timer(CFWL_Caret* pCaret);
41 ~Timer() override {}
45 friend class CFWL_Caret::Timer;
51 std::unique_ptr<CFWL_Caret::Timer> m_pTimer;
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Timer.h 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
22 class Timer;
72 /// the Timer will print the amount of time it has captured to standard error
73 /// when the last timer is destroyed, otherwise it is printed when its
76 class Timer {
81 bool Running; ///< Is the timer currently running?
82 bool Triggered; ///< Has the timer ever been triggered?
83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in.
85 Timer **Prev; ///< Pointer to \p Next of previous timer in group
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
FakeUid.java 21 import android.os.BatteryStats.Timer;
49 public Timer getAggregatedPartialWakelockTimer() {
54 public Timer getMulticastWakelockStats() {
59 public ArrayMap<String, ? extends Timer> getSyncStats() {
64 public ArrayMap<String, ? extends Timer> getJobStats() {
162 public Timer getWifiScanTimer() {
182 public Timer getWifiScanBackgroundTimer() {
202 public Timer getAudioTurnedOnTimer() {
207 public Timer getVideoTurnedOnTimer() {
212 public Timer getFlashlightTurnedOnTimer()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Timer.h 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
22 class Timer;
72 /// the Timer will print the amount of time it has captured to standard error
73 /// when the last timer is destroyed, otherwise it is printed when its
76 class Timer {
81 bool Running; ///< Is the timer currently running?
82 bool Triggered; ///< Has the timer ever been triggered?
83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in.
85 Timer **Prev; ///< Pointer to \p Next of previous timer in group
    [all...]

Completed in 3970 milliseconds

1 2 3 4 5 6 7 8 91011>>