/external/autotest/frontend/client/src/autotest/common/ |
PaddedJsonRpcProxy.java | 8 import com.google.gwt.user.client.Timer; 36 private Timer timeoutTimer; 48 timeoutTimer = new Timer() { 84 * See the implementation of com.google.gwt.user.client.Timer.fire(), from which this
|
/frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/ |
RSoVTestCore.java | 26 import java.util.Timer; 47 /* Periodic timer for ensuring future tests get scheduled */ 48 private Timer mTimer; 91 mTimer = new Timer();
|
/frameworks/rs/tests/lldb/java/InfiniteLoop/src/com/android/rs/infiniteloop/ |
MainActivity.java | 27 import java.util.Timer; 77 Timer t = new Timer();
|
/packages/services/Car/tests/obd2_app/src/com/google/android/car/obd2app/ |
MainActivity.java | 31 import java.util.Timer; 40 private final Timer mTimer = new Timer("com.google.android.car.obd2app.collection");
|
/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/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
|
/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 | 36 private final Timer mManual = new Timer("Manual"); 37 private final Timer mQuota = new Timer("Quota"); 39 private static class Timer { 44 public Timer(String title) {
|
/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);
|
/libcore/ojluni/src/main/java/java/util/ |
Timer.java | 35 * <p>Corresponding to each <tt>Timer</tt> object is a single background 36 * thread that is used to execute all of the timer's tasks, sequentially. 37 * Timer tasks should complete quickly. If a timer task takes excessive time 38 * to complete, it "hogs" the timer's task execution thread. This can, in 43 * <p>After the last live reference to a <tt>Timer</tt> object goes away 44 * <i>and</i> all outstanding tasks have completed execution, the timer's task 49 * wants to terminate a timer's task execution thread rapidly, the caller 50 * should invoke the timer's <tt>cancel</tt> method. 52 * <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();
|
/frameworks/rs/tests/java_api/RsTest_16/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();
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
TimerCircleView.java | 17 package com.android.deskclock.timer; 31 import com.android.deskclock.data.Timer; 34 * Custom view that draws timer progress as a circle. 38 /** The size of the dot indicating the progress through the timer. */ 44 /** The color indicating the remaining portion of the timer. */ 47 /** The color indicating the completed portion of the timer. */ 50 /** The size of the stroke that paints the timer circle. */ 57 private Timer mTimer; 85 void update(Timer timer) { [all...] |