/frameworks/rs/scriptc/ |
D | rs_time.rsh | 63 * 1970). If @p timer is non-NULL, the result is also stored in the memory 66 * @param timer Location to also store the returned calendar time. 71 rsTime(rs_time_t *timer); 74 * Converts the time specified by @p timer into broken-down time and stores it 79 * @param timer Input time as calendar time. 84 rsLocaltime(rs_tm *local, const rs_time_t *timer);
|
/frameworks/rs/ |
D | rsScriptC_Lib.cpp | 84 time_t rsrTime(Context *rsc, time_t *timer) { in rsrTime() argument 85 return time(timer); in rsrTime() 88 tm* rsrLocalTime(Context *rsc, tm *local, time_t *timer) { in rsrLocalTime() argument 96 tm *tmp = localtime(timer); in rsrLocalTime()
|
D | rsRuntime.h | 118 time_t rsrTime(Context *, time_t *timer); 119 tm* rsrLocalTime(Context *, tm *local, time_t *timer);
|
/frameworks/base/core/java/android/os/ |
D | BatteryStats.java | 1114 private static long computeWakeLock(Timer timer, long batteryRealtime, int which) { in computeWakeLock() argument 1115 if (timer != null) { in computeWakeLock() 1117 long totalTimeMicros = timer.getTotalTimeLocked(batteryRealtime, which); in computeWakeLock() 1134 private static final String printWakeLock(StringBuilder sb, Timer timer, in printWakeLock() argument 1137 if (timer != null) { in printWakeLock() 1138 long totalTimeMillis = computeWakeLock(timer, batteryRealtime, which); in printWakeLock() 1140 int count = timer.getCountLocked(which); in printWakeLock() 1168 private static final String printWakeLockCheckin(StringBuilder sb, Timer timer, long now, in printWakeLockCheckin() argument 1172 if (timer != null) { in printWakeLockCheckin() 1173 totalTimeMicros = timer.getTotalTimeLocked(now, which); in printWakeLockCheckin() [all …]
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
D | GLFrame.java | 145 StopWatchMap timer = GLFrameTimer.get(); in flushGPU() local 146 if (timer.LOG_MFF_RUNNING_TIMES) { in flushGPU() 147 timer.start("glFinish " + message); in flushGPU() 149 timer.stop("glFinish " + message); in flushGPU()
|
/frameworks/base/tools/orientationplot/ |
D | orientationplot.py | 182 self.timer = self.fig.canvas.new_timer(interval=100) 183 self.timer.add_callback(lambda: self.update()) 184 self.timer.start() 193 self.timer.stop() 196 self.timer.start()
|
/frameworks/base/tools/velocityplot/ |
D | velocityplot.py | 117 self.timer = self.fig.canvas.new_timer(interval=100) 118 self.timer.add_callback(lambda: self.update()) 119 self.timer.start()
|
/frameworks/rs/driver/ |
D | rsdRuntimeStubs.cpp | 509 time_t SC_Time(time_t *timer) { in SC_Time() argument 511 return rsrTime(rsc, timer); in SC_Time() 514 static int SC_Time(int *timer) { in SC_Time() argument 516 return rsrTime(rsc, (long*)timer); in SC_Time() 520 tm* SC_LocalTime(tm *local, time_t *timer) { in SC_LocalTime() argument 522 return rsrLocalTime(rsc, local, timer); in SC_LocalTime() 1265 int rsTime(int *timer) { in rsTime() argument 1266 return SC_Time(timer); in rsTime() 1269 rs_tm* rsLocaltime(rs_tm* local, const int *timer) { in rsLocaltime() argument 1270 return (rs_tm*)(SC_LocalTime((tm*)local, (long*)timer)); in rsLocaltime()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/location/ |
D | LocationBasedCountryDetectorTest.java | 354 Timer timer = detector.getTimer(); in waitForTimerReset() local 355 assertTrue(timer == null); in waitForTimerReset()
|
/frameworks/base/services/java/com/android/server/ |
D | SystemServer.java | 1020 static Timer timer; field in SystemServer 1047 timer = new Timer(); in main() 1048 timer.schedule(new TimerTask() { in main()
|
/frameworks/base/libs/androidfw/ |
D | AssetManager.cpp | 1679 DurationTimer timer; in loadFileNameCacheLocked() local 1680 timer.start(); in loadFileNameCacheLocked() 1686 timer.stop(); in loadFileNameCacheLocked() 1688 timer.durationUsecs() / 1000.0); in loadFileNameCacheLocked()
|
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
D | SipSessionGroup.java | 132 SipWakeupTimer timer, SipWakeLock wakeLock) throws SipException { in SipSessionGroup() argument 135 mWakeupTimer = timer; in SipSessionGroup() 142 void setWakeupTimer(SipWakeupTimer timer) { in setWakeupTimer() argument 143 mWakeupTimer = timer; in setWakeupTimer()
|
D | SipService.java | 486 void setWakeupTimer(SipWakeupTimer timer) { in setWakeupTimer() argument 487 mSipGroup.setWakeupTimer(timer); in setWakeupTimer()
|
/frameworks/base/docs/html/training/notify-user/ |
D | expanded.jd | 76 <li>A way to view the reminder text the user set as part of the timer.</li>
|
/frameworks/base/docs/html/guide/topics/media/jet/ |
D | jetcreator_manual.jd | 257 not pressed a button, a timer is set to half the length of the window. If the 258 player presses the button before the timer expires, the game registers a 264 event is received, a timer is set to half the length of the window. If an event 265 is received before the timer expires, the game registers a success, and if not,
|
/frameworks/base/docs/html/training/cloudsync/ |
D | gcm.jd | 193 beep or vibrate to alert the user, consider setting up a timer. Don't let the
|
/frameworks/base/core/java/com/android/internal/os/ |
D | BatteryStatsImpl.java | 616 public static void writeTimerToParcel(Parcel out, Timer timer, in writeTimerToParcel() argument 618 if (timer == null) { in writeTimerToParcel() 624 timer.writeToParcel(out, batteryRealtime); in writeTimerToParcel() 4475 for (SamplingTimer timer : mKernelWakelockStats.values()) { in resetAllStatsLocked() 4476 mUnpluggables.remove(timer); in resetAllStatsLocked()
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | prop-animation.jd | 86 …nt on how busy the system is overall and how fast the system can service the underlying timer.</li>
|
/frameworks/base/tests/DumpRenderTree/assets/results/ |
D | layout_tests_passed.txt | 1876 /sdcard/android/layout_tests/fast/dom/Window/redirect-with-timer.html 1971 /sdcard/android/layout_tests/fast/dom/timer-clear-interval-in-handler.html 2529 /sdcard/android/layout_tests/fast/frames/hover-timer-crash.html 2572 /sdcard/android/layout_tests/http/tests/misc/timer-vs-loading.html
|
D | layout_tests_failed.txt | 447 /sdcard/android/layout_tests/fast/loader/cancel-load-during-port-block-timer.html
|