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

1 2 34 5 6 7 8 91011>>

  /system/core/base/
chrono_utils.cpp 36 std::ostream& operator<<(std::ostream& os, const Timer& t) {
  /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/Arm/
ArmV7ArchTimerSupport.S 31 mrc p15, 0, r0, c14, c1, 0 @ Read CNTK_CTL (Timer PL1 Control Register)
35 mcr p15, 0, r0, c14, c1, 0 @ Write to CNTK_CTL (Timer PL1 Control Register)
39 mrc p15, 0, r0, c14, c2, 0 @ Read CNTP_TVAL (PL1 physical timer value register)
43 mcr p15, 0, r0, c14, c2, 0 @ Write to CNTP_TVAL (PL1 physical timer value register)
47 mrc p15, 0, r0, c14, c2, 1 @ Read CNTP_CTL (PL1 Physical Timer Control Register)
51 mcr p15, 0, r0, c14, c2, 1 @ Write to CNTP_CTL (PL1 Physical Timer Control Register)
55 mrc p15, 0, r0, c14, c3, 0 @ Read CNTV_TVAL (Virtual Timer Value register)
59 mcr p15, 0, r0, c14, c3, 0 @ Write to CNTV_TVAL (Virtual Timer Value register)
63 mrc p15, 0, r0, c14, c3, 1 @ Read CNTV_CTL (Virtual Timer Control Register)
67 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
37 osLog(LOG_INFO, "%s " fmt, "[timer]", ##__VA_ARGS__); \
42 struct Timer {
57 static struct Timer mTimers[MAX_TIMERS];
73 static struct Timer *timFindTimerById(uint32_t timId) /* no locks taken. be careful what you do with this */
89 static void timCallFunc(struct Timer *tim)
103 ERROR_PRINT("Could not enqueue private timer event\n");
118 struct Timer *tim;
161 //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
45 // The Timer type represents a single event.
46 // When the Timer expires, the current time will be sent on C,
47 // unless the Timer was created by AfterFunc.
48 // A Timer must be created with NewTimer or AfterFunc.
49 type Timer struct {
54 // Stop prevents the Timer from firing.
55 // It returns true if the call stops the timer, false if the timer has already
60 // 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
45 // The Timer type represents a single event.
46 // When the Timer expires, the current time will be sent on C,
47 // unless the Timer was created by AfterFunc.
48 // A Timer must be created with NewTimer or AfterFunc.
49 type Timer struct {
54 // Stop prevents the Timer from firing.
55 // It returns true if the call stops the timer, false if the timer has already
60 // 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...]
  /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();
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/MpInitLib/
DxeMpLib.c 21 #include <Protocol/Timer.h>
197 This function is triggered by timer periodically to check the
375 // Set timer to check all APs status.
651 EFI_TIMER_ARCH_PROTOCOL *Timer;
656 // Locate Timer Arch Protocol
658 Status = gBS->LocateProtocol (&gEfiTimerArchProtocolGuid, NULL, (VOID **) &Timer);
660 Timer = NULL;
663 if (Timer != NULL) {
665 // Save current rate of DXE Timer
667 Timer->GetTimerPeriod (Timer, &TimerPeriod);
    [all...]
  /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,
  /frameworks/av/media/libstagefright/include/media/stagefright/
MediaClock.h 64 // request to set up a timer. The target time is |mediaTimeUs|, adjusted by
83 struct Timer {
84 Timer(const sp<AMessage> &notify, int64_t mediaTimeUs, int64_t adjustRealUs);
113 std::list<Timer> mTimers;
  /platform_testing/libraries/device-collectors/src/main/java/android/device/collectors/
ScheduledRunMetricListener.java 25 import java.util.Timer;
39 private Timer mTimer;
53 mTimer = new Timer();
  /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.
  /external/pdfium/xfa/fwl/
cfwl_caret.cpp 30 m_pTimer(pdfium::MakeUnique<CFWL_Caret::Timer>(this)),
99 CFWL_Caret::Timer::Timer(CFWL_Caret* pCaret) : CFWL_Timer(pCaret) {}
101 void CFWL_Caret::Timer::Run(CFWL_TimerInfo* pTimerInfo) {
  /external/perfetto/src/base/
watchdog_posix.cc 77 Watchdog::Timer Watchdog::CreateFatalTimer(uint32_t ms) {
78 return Watchdog::Timer(ms);
233 Watchdog::Timer::Timer(uint32_t ms) {
244 Watchdog::Timer::~Timer() {
250 Watchdog::Timer::Timer(Timer&& other) {

Completed in 630 milliseconds

1 2 34 5 6 7 8 91011>>