/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
RSTestCore.java | 25 import java.util.Timer; 49 /* Periodic timer for ensuring future tests get scheduled */ 50 private Timer mTimer; 133 mTimer = new Timer();
|
/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/ |
RSTestCore.java | 26 import java.util.Timer; 47 /* Periodic timer for ensuring future tests get scheduled */ 48 private Timer mTimer; 151 mTimer = new Timer();
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
SamplingProfiler.java | 24 import java.util.Timer; 71 * Timer that is used for the lifetime of the profiler 73 private final Timer timer = new Timer("SamplingProfiler", true); field in class:SamplingProfiler 285 timer.scheduleAtFixedRate(sampler, 0, interval); 316 timer.cancel();
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
LabelDialogFragment.java | 42 import com.android.deskclock.data.Timer; 78 public static LabelDialogFragment newInstance(Timer timer) { 80 args.putString(ARG_LABEL, timer.getLabel()); 81 args.putInt(ARG_TIMER_ID, timer.getId()); 177 * Sets the new label into the timer or alarm. 189 final Timer timer = DataModel.getDataModel().getTimer(mTimerId); local 190 if (timer != null) { 191 DataModel.getDataModel().setTimerLabel(timer, label) [all...] |
/packages/apps/Messaging/src/android/support/v7/mms/ |
MmsNetworkManager.java | 30 import java.util.Timer; 82 // Timer to extend the network connectivity 83 private Timer mExtensionTimer; 172 // no need for the receiver. The auto extension timer will try 254 mExtensionTimer = new Timer(MMS_NETWORK_EXTENSION_TIMER, true/*daemon*/);
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
WpsDialog.java | 37 import java.util.Timer; 55 private Timer mTimer; 195 mTimer = new Timer(false);
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
HtmlSanitizer.java | 21 import com.android.mail.perf.Timer; 401 Timer.startTiming("sanitizingHTMLEmail"); 405 Timer.stopTiming("sanitizingHTMLEmail");
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
DeviceUtilStatsMonitor.java | 28 import java.util.Timer; 184 private Timer mTimer; 221 mTimer = new Timer();
|
/device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/ |
Mtftp6Driver.c | 57 if (Service->Timer != NULL) {
58 gBS->CloseEvent (Service->Timer);
112 // Create a internal timer for all instances.
119 &Mtftp6Srv->Timer
140 gBS->CloseEvent (Mtftp6Srv->Timer);
407 // Start the internal timer to track the packet retransmission.
410 Service->Timer,
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/ |
Ip4Driver.c | 247 IpSb->Timer = NULL;
256 // Create various resources. First create the route table, timer
272 &IpSb->Timer
424 if (IpSb->Timer != NULL) {
425 gBS->SetTimer (IpSb->Timer, TimerCancel, 0);
426 gBS->CloseEvent (IpSb->Timer);
428 IpSb->Timer = NULL;
556 // Ready to go: start the receiving and timer.
566 Status = gBS->SetTimer (IpSb->Timer, TimerPeriodic, TICKS_PER_SECOND);
|
/device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/ |
DnsDhcp.c | 18 The callback function for the timer event used to get map.
778 EFI_EVENT Timer;
785 Timer = NULL;
856 Status = gBS->CreateEvent (EVT_TIMER, TPL_CALLBACK, NULL, NULL, &Timer);
862 Timer,
872 TimerStatus = gBS->CheckEvent (Timer);
897 if (Timer != NULL) {
898 gBS->CloseEvent (Timer);
|
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/ |
Ip6Driver.c | 217 if (IpSb->Timer != NULL) {
218 gBS->SetTimer (IpSb->Timer, TimerCancel, 0);
219 gBS->CloseEvent (IpSb->Timer);
221 IpSb->Timer = NULL;
356 IpSb->Timer = NULL;
364 // Create various resources. First create the route table, timer
379 &IpSb->Timer
577 // ready to go: start the receiving and timer
585 // The timer expires every 100 (IP6_TIMER_INTERVAL_IN_MS) milliseconds.
597 // The timer expires every 1000 (IP6_ONE_SECOND_IN_MS) milliseconds. [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
TimerNotificationBuilder.java | 38 import com.android.deskclock.timer.ExpiredTimersActivity; 39 import com.android.deskclock.timer.TimerService; 57 public Notification build(Context context, NotificationModel nm, List<Timer> unexpired) { 58 final Timer timer = unexpired.get(0); local 62 final boolean running = timer.isRunning(); 65 final long base = getChronometerBase(timer); 73 // Single timer is running. 74 if (TextUtils.isEmpty(timer.getLabel())) { 77 stateText = timer.getLabel() 214 final Timer timer = expired.get(0); local 296 final Timer timer = missedTimers.get(0); local [all...] |
/frameworks/base/core/java/android/os/ |
BatteryStats.java | 60 * A constant indicating a partial wake lock timer. 65 * A constant indicating a full wake lock timer. 70 * A constant indicating a window wake lock timer. 75 * A constant indicating a sensor timer. 80 * A constant indicating a a wifi running timer 85 * A constant indicating a full wifi lock timer 95 * A constant indicating a wifi multicast timer 100 * A constant indicating a video turn on timer 105 * A constant indicating a vibrator on timer 110 * A constant indicating a foreground activity timer 3491 final Timer timer = u.getAggregatedPartialWakelockTimer(); local 3527 final Timer timer = syncs.valueAt(isy); local 3543 final Timer timer = jobs.valueAt(ij); local 3571 final Timer timer = se.getSensorTime(); local 4441 final BatteryStats.Timer timer = ent.getValue(); local 4451 final TimerEntry timer = ktimers.get(i); local 4473 TimerEntry timer = timers.get(i); local 4492 final Timer timer = ent.getValue(); local 4498 TimerEntry timer = reasons.get(i); local 4913 final Timer timer = syncs.valueAt(isy); local 4947 final Timer timer = jobs.valueAt(ij); local 5004 final Timer timer = se.getSensorTime(); local [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/ |
Dhcp6Impl.c | 607 EFI_EVENT Timer;
655 Status = gBS->CreateEvent (EVT_TIMER, TPL_CALLBACK, NULL, NULL, &Timer);
661 // Start the timer, wait for link local address DAD to finish.
663 Status = gBS->SetTimer (Timer, TimerRelative, GetMappingTimeOut);
665 gBS->CloseEvent (Timer);
670 TimerStatus = gBS->CheckEvent (Timer);
686 gBS->CloseEvent (Timer);
718 the state transfers to Dhcp6Bound and the valid and preferred timer restarts.
719 If fails, the state transfers to Dhcp6Bound, but the timer continues.
722 to Dhcp6Bound and the valid and preferred timer restarts. If it fails, the state [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
TrieMapTest.java | 28 import android.icu.dev.util.Timer; 47 private static Timer t = new Timer(); 59 t.setTimingPeriod(1*Timer.SECONDS); 63 t.setTimingPeriod(seconds*Timer.SECONDS); 468 static abstract class MyLoop extends Timer.Loop {
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
TrieMapTest.java | 27 import com.ibm.icu.dev.util.Timer; 46 private static Timer t = new Timer(); 58 t.setTimingPeriod(1*Timer.SECONDS); 62 t.setTimingPeriod(seconds*Timer.SECONDS); 467 static abstract class MyLoop extends Timer.Loop {
|
/prebuilts/misc/common/swig/include/2.0.11/gcj/ |
javaprims.i | 320 class Timer; 321 class Timer$Scheduler; 322 class Timer$TaskQueue;
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/ |
BleConnectionPriorityClientService.java | 46 import java.util.Timer;
107 private Timer mConnectionTimer;
220 // Create Timer for Periodic transmission
270 mConnectionTimer = new Timer();
|
BleConnectionPriorityServerService.java | 41 import java.util.Timer;
95 private Timer mTimeoutTimer;
308 // start timeout timer
309 mTimeoutTimer = new Timer(getClass().getName() + "_TimeoutTimer");
|
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/ |
MainFragment.java | 59 import java.util.Timer; 75 private Timer mBackgroundTimer; 233 mBackgroundTimer = new Timer();
|
/external/pdfium/xfa/fwl/ |
cfwl_spinbutton.cpp | 343 CFWL_SpinButton::Timer::Timer(CFWL_SpinButton* pToolTip) 346 void CFWL_SpinButton::Timer::Run(CFWL_TimerInfo* pTimerInfo) {
|
/external/swiftshader/src/D3D9/ |
Direct3DSwapChain9.cpp | 19 #include "Timer.hpp" 93 static int64_t frame = sw::Timer::ticks(); 95 int64_t frameTime = sw::Timer::ticks() - frame; 96 frame = sw::Timer::ticks();
|
/frameworks/base/services/core/java/com/android/server/location/ |
ComprehensiveCountryDetector.java | 32 import java.util.Timer; 74 protected Timer mLocationRefreshTimer; 409 Slog.d(TAG, "start periodic location refresh timer. Interval: " 412 mLocationRefreshTimer = new Timer();
|
/frameworks/base/services/tests/servicestests/src/com/android/server/location/ |
LocationBasedCountryDetectorTest.java | 32 import java.util.Timer; 146 public Timer getTimer() { 354 Timer timer = detector.getTimer(); local 355 assertTrue(timer == null);
|