Searched defs:timer (Results 1 - 7 of 7) sorted by relevance

/frameworks/rs/
H A DrsScriptC_Lib.cpp84 time_t rsrTime(Context *rsc, time_t *timer) { argument
85 return time(timer);
88 tm* rsrLocalTime(Context *rsc, tm *local, time_t *timer) { argument
96 tm *tmp = localtime(timer);
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java486 void setWakeupTimer(SipWakeupTimer timer) { argument
487 mSipGroup.setWakeupTimer(timer);
H A DSipSessionGroup.java132 SipWakeupTimer timer, SipWakeLock wakeLock) throws SipException {
135 mWakeupTimer = timer;
142 void setWakeupTimer(SipWakeupTimer timer) { argument
143 mWakeupTimer = timer;
558 // lightweight timer
587 loge("session timer interrupted!", e);
131 SipSessionGroup(SipProfile profile, String password, SipWakeupTimer timer, SipWakeLock wakeLock) argument
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp1730 DurationTimer timer; local
1731 timer.start();
1737 timer.stop();
1739 timer.durationUsecs() / 1000.0);
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp669 time_t SC_Time(time_t *timer) { argument
671 return rsrTime(rsc, timer);
674 static int SC_Time(int *timer) { argument
676 return rsrTime(rsc, (long*)timer);
680 tm* SC_LocalTime(tm *local, time_t *timer) { argument
682 return rsrLocalTime(rsc, local, timer);
1563 int rsTime(int *timer) { argument
1564 return SC_Time(timer);
1567 rs_tm* rsLocaltime(rs_tm* local, const int *timer) { argument
1568 return (rs_tm*)(SC_LocalTime((tm*)local, (long*)timer));
[all...]
/frameworks/base/core/java/android/os/
H A DBatteryStats.java54 * A constant indicating a partial wake lock timer.
59 * A constant indicating a full wake lock timer.
64 * A constant indicating a window wake lock timer.
69 * A constant indicating a sensor timer.
74 * A constant indicating a a wifi running timer
79 * A constant indicating a full wifi lock timer
89 * A constant indicating a wifi multicast timer
94 * A constant indicating an audio turn on timer
99 * A constant indicating a video turn on timer
104 * A constant indicating a vibrator on timer
1755 computeWakeLock(Timer timer, long elapsedRealtimeUs, int which) argument
1775 printWakeLock(StringBuilder sb, Timer timer, long elapsedRealtimeUs, String name, int which, String linePrefix) argument
1809 printWakeLockCheckin(StringBuilder sb, Timer timer, long elapsedRealtimeUs, String name, int which, String linePrefix) argument
2318 TimerEntry(String name, int id, BatteryStats.Timer timer, long time) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java162 // A set of pools of currently active timers. When a timer is queried, we will divide the
163 // elapsed time by the number of active timers to arrive at that timer's share of the time.
164 // In order to do this, we must refresh each timer whenever the number of active timers
933 * Clear state of this timer. Returns true if the timer is inactive
992 * @param timer a Timer, or null.
994 public static void writeTimerToParcel(Parcel out, Timer timer, long elapsedRealtimeUs) { argument
995 if (timer == null) {
1001 timer.writeToParcel(out, elapsedRealtimeUs);
1217 * A timer tha
[all...]

Completed in 319 milliseconds