/device/linaro/bootloader/edk2/EmulatorPkg/Library/DxeCoreTimerLib/ |
DxeCoreTimerLib.c | 2 A non-functional instance of the Timer Library.
22 #include <Protocol/Timer.h>
|
/device/linaro/bootloader/edk2/NetworkPkg/Application/Ping6/ |
Ping6.h | 56 EFI_EVENT Timer;
76 In IA64, the register is the Interval Timer Vector (ITV).
|
/device/linaro/bootloader/edk2/Nt32Pkg/TimerDxe/ |
Timer.h | 14 Timer.h
19 This Timer module uses an NT Thread to simulate the timer-tick driven
20 timer service.
30 #include <Protocol/Timer.h>
39 // Legal timer value range in 100 ns units
45 // Default timer value in 100 ns units (10 ms)
|
/device/linaro/bootloader/edk2/PcAtChipsetPkg/8254TimerDxe/ |
Timer.h | 21 #include <Protocol/Timer.h>
29 // The PCAT 8253/8254 has an input clock at 1.193182 MHz and Timer 0 is
39 // The maximum tick duration for 8254 timer
43 // The default timer tick duration is set to 10 ms = 100000 100 ns units
53 Initialize the Timer Architectural Protocol driver
58 @retval EFI_SUCCESS Timer Architectural Protocol created
73 This function adjusts the period of timer interrupts to the value specified
74 by TimerPeriod. If the timer period is updated, then the selected timer
76 the timer hardware is not programmable, then EFI_UNSUPPORTED is returned. [all...] |
/external/libchrome/components/timers/ |
alarm_timer_chromeos.h | 16 #include "base/timer/timer.h" 23 // The class implements a timer that is capable of waking the system up from a 28 // exactly the same way as a regular Timer. 33 class AlarmTimer : public base::Timer { 37 // Timer overrides. 49 // Called when the timer fires. Runs the callback. 52 // Tracks whether the timer has the ability to wake the system up from 58 // Timer file descriptor.
|
/external/ltp/testcases/kernel/power_management/ |
README | 87 Timer migration interface test will execute on kernel versions 2.6.31 and above. Timer migration functionality verification testcases will be executed only on suitable architecture like quad core or the number of CPU's in each package should be atleast 4 and above
|
/system/vold/ |
Benchmark.cpp | 125 android::base::Timer timer; local 131 return (timer.duration() < kTimeout); 134 if (res == OK) extras->putLong(String16("create"), timer.duration().count()); 139 android::base::Timer timer; local 147 if (res == OK) extras->putLong(String16("drop"), timer.duration().count()); 152 android::base::Timer timer; local 158 return (timer.duration() < kTimeout) 166 android::base::Timer timer; local [all...] |
/external/autotest/server/site_tests/firmware_FAFTSetup/ |
firmware_FAFTSetup.py | 6 from threading import Timer 59 Timer(self.KEY_PRESS_DELAY, press_action).start()
|
/external/jmdns/src/javax/jmdns/impl/tasks/state/ |
Canceler.java | 8 import java.util.Timer; 52 * @see javax.jmdns.impl.tasks.DNSTask#start(java.util.Timer) 55 public void start(Timer timer) { 56 timer.schedule(this, 0, DNSConstants.ANNOUNCE_WAIT_INTERVAL);
|
/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);
|
/system/core/base/ |
chrono_utils_test.cpp | 58 Timer t; 68 Timer t;
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
InstallerTest.java | 45 private final Timer mManual = new Timer("Manual"); 46 private final Timer mQuota = new Timer("Quota"); 48 private static class Timer { 53 public Timer(String title) {
|
/toolchain/binutils/ |
build.py | 36 import ndk.timer # pylint: disable=import-error 204 total_timer = ndk.timer.Timer() 217 clean_timer = ndk.timer.Timer() 229 configure_timer = ndk.timer.Timer() 233 build_timer = ndk.timer.Timer() 237 install_timer = ndk.timer.Timer( [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/ |
IScsiDhcp6.c | 378 EFI_EVENT Timer;
400 Timer = NULL;
460 Status = gBS->CreateEvent (EVT_TIMER, TPL_CALLBACK, NULL, NULL, &Timer);
466 Timer,
477 TimerStatus = gBS->CheckEvent (Timer);
503 if (Timer != NULL) {
504 gBS->CloseEvent (Timer);
|
/external/skia/tools/viewer/ |
StatsLayer.cpp | 28 StatsLayer::Timer StatsLayer::addTimer(const char* label, SkColor color, SkColor labelColor) { 29 Timer newTimer = fTimers.count(); 38 void StatsLayer::beginTiming(Timer timer) { 39 fTimers[timer].fTimes[fCurrentMeasurement] -= SkTime::GetMSecs(); 42 void StatsLayer::endTiming(Timer timer) { 43 fTimers[timer].fTimes[fCurrentMeasurement] += SkTime::GetMSecs(); 46 double StatsLayer::getLastTime(Timer timer) { [all...] |
/external/skqp/tools/viewer/ |
StatsLayer.cpp | 28 StatsLayer::Timer StatsLayer::addTimer(const char* label, SkColor color, SkColor labelColor) { 29 Timer newTimer = fTimers.count(); 38 void StatsLayer::beginTiming(Timer timer) { 39 fTimers[timer].fTimes[fCurrentMeasurement] -= SkTime::GetMSecs(); 42 void StatsLayer::endTiming(Timer timer) { 43 fTimers[timer].fTimes[fCurrentMeasurement] += SkTime::GetMSecs(); 46 double StatsLayer::getLastTime(Timer timer) { [all...] |
/external/tensorflow/tensorflow/stream_executor/ |
stream_executor_internal.h | 52 class Timer; 122 // Pointer-to-implementation object type (i.e. the Timer class delegates to 124 // platform-dependent code to hang any timer data/resource info/functionality 134 // Returns the number of microseconds elapsed in a completed timer. 137 // Returns the number of nanoseconds elapsed in a completed timer. 218 virtual bool AllocateTimer(Timer *timer) = 0; 219 virtual void DeallocateTimer(Timer *timer) = 0; 220 virtual bool StartTimer(Stream *stream, Timer *timer) = 0 [all...] |
/libcore/ojluni/src/main/java/java/util/ |
Timer.java | 36 * <p>Corresponding to each <tt>Timer</tt> object is a single background 37 * thread that is used to execute all of the timer's tasks, sequentially. 38 * Timer tasks should complete quickly. If a timer task takes excessive time 39 * to complete, it "hogs" the timer's task execution thread. This can, in 44 * <p>After the last live reference to a <tt>Timer</tt> object goes away 45 * <i>and</i> all outstanding tasks have completed execution, the timer's task 50 * wants to terminate a timer's task execution thread rapidly, the caller 51 * should invoke the timer's <tt>cancel</tt> method. 53 * <p>If the timer's task execution thread terminates unexpectedly, fo [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
MapMaker.java | 20 import com.google.gwt.user.client.Timer; 113 Timer timer = new Timer() { local 119 timer.schedule((int) expirationMillis);
|
/frameworks/base/core/tests/coretests/src/com/android/internal/os/ |
BatteryStatsSensorTest.java | 56 BatteryStats.Timer sensorTimer = bi.getUidStats().get(UID).getSensorStats() 58 BatteryStats.Timer sensorBgTimer = bi.getUidStats().get(UID).getSensorStats() 87 BatteryStats.Timer sensorTimer = bi.getUidStats().get(UID).getSensorStats() 122 BatteryStats.Timer sensorTimer = bi.getUidStats().get(UID).getSensorStats() 170 BatteryStats.Timer sensorTimer = bi.getUidStats().get(UID).getSensorStats() 203 BatteryStats.Timer sensorTimer = bi.getUidStats().get(UID).getSensorStats() 320 BatteryStats.Timer timer1 = bi.getUidStats().get(UID).getSensorStats() 322 BatteryStats.Timer bgTimer1 = bi.getUidStats().get(UID).getSensorStats() 325 BatteryStats.Timer timer2 = bi.getUidStats().get(UID_2).getSensorStats() 327 BatteryStats.Timer bgTimer2 = bi.getUidStats().get(UID_2).getSensorStats( 454 BatteryStats.Timer timer = sensor.getSensorTime(); local [all...] |
/frameworks/base/services/core/java/com/android/server/location/ |
LocationBasedCountryDetector.java | 33 import java.util.Timer; 56 protected Timer mTimer; 199 mTimer = new Timer();
|
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/ |
MainActivity.java | 36 import java.util.Timer;
49 private Timer mTimer;
64 mTimer = new Timer();
|
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/ |
MainActivity.java | 28 import java.util.Timer;
43 private Timer mTimer;
77 mTimer = new Timer();
|
/frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/ |
RSTestCore.java | 25 import java.util.Timer; 52 /* Periodic timer for ensuring future tests get scheduled */ 53 private Timer mTimer; 113 mTimer = new Timer();
|
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/ |
RSTestCore.java | 25 import java.util.Timer; 52 /* Periodic timer for ensuring future tests get scheduled */ 53 private Timer mTimer; 117 mTimer = new Timer();
|