Searched defs:totalTime (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DTimeAnimator.java18 long totalTime = currentTime - mStartTime;
21 mListener.onTimeUpdate(this, totalTime, deltaTime);
51 * deltaTime will be zero. The same is true for totalTime, unless the animator was
61 * @param totalTime The total time elapsed since the animator started, in milliseconds.
64 void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime); argument
/frameworks/native/opengl/tests/angeles/
H A Dapp-linux.cpp207 double totalTime = timeTemp.tv_usec/1000000.0 + timeTemp.tv_sec; local
227 totalTime = (timeTemp.tv_usec/1000000.0 + timeTemp.tv_sec) - totalTime;
228 printf("totalTime=%f s, frameCount=%d, %.2f fps\n",
229 totalTime, frameCount, frameCount/totalTime);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h287 // totalTime[]: total time of audio output devices usage
288 int32_t totalTime[NUM_AUDIO_DEVICES]; // in ms member in struct:android::MediaPlayerService::BatteryAudioFlingerUsageInfo
H A DMediaPlayerService.cpp231 mBatteryAudio.totalTime[i] = 0;
2041 mBatteryAudio.totalTime[i] += mBatteryAudio.lastTime[i];
2081 mBatteryAudio.totalTime[i] += mBatteryAudio.lastTime[i];
2156 int32_t totalTime; local
2159 totalTime = mBatteryAudio.totalTime[i];
2164 totalTime += tmpTime;
2167 reply->writeInt32(totalTime);
2169 mBatteryAudio.totalTime[i] = 0;
/frameworks/base/core/java/com/android/internal/os/
H A DProcessStats.java713 final int totalTime = mRelUserTime + mRelSystemTime + mRelIoWaitTime
716 if (DEBUG) Slog.i(TAG, "totalTime " + totalTime + " over sample time "
737 printProcessCPU(pw, "", -1, "TOTAL", totalTime, mRelUserTime, mRelSystemTime,
757 int totalTime, int user, int system, int iowait, int irq, int softIrq,
760 if (totalTime == 0) totalTime = 1;
761 printRatio(pw, user+system+iowait+irq+softIrq, totalTime);
769 printRatio(pw, user, totalTime);
771 printRatio(pw, system, totalTime);
756 printProcessCPU(PrintWriter pw, String prefix, int pid, String label, int totalTime, int user, int system, int iowait, int irq, int softIrq, int minFaults, int majFaults) argument
[all...]
H A DBatteryStatsImpl.java320 Process.PROC_TAB_TERM|Process.PROC_OUT_LONG, // 5: totalTime
767 public void updateCurrentReportedTotalTime(long totalTime) { argument
770 mUnpluggedReportedTotalTime = totalTime;
774 mCurrentReportedTotalTime = totalTime;
1061 long totalTime;
1100 totalTime = (wlData[2] + 500) / 1000;
1104 m.put(name, new KernelWakelockStats(count, totalTime,
1111 kwlStats.mTotalTime += totalTime;
1114 kwlStats.mTotalTime = totalTime;
1141 KernelWakelockStats(int count, long totalTime, in argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DTextLayoutCache.cpp158 nsecs_t totalTime = systemTime(SYSTEM_TIME_MONOTONIC) - startTime; local
165 (totalTime - value->getElapsedTime()) * 0.000001f,
/frameworks/base/services/java/com/android/server/am/
H A DActivityStack.java3142 outResult.totalTime = 0;
3241 long thisTime, long totalTime) {
3249 w.totalTime = totalTime;
3261 w.totalTime = SystemClock.uptimeMillis() - w.thisTime;
3262 w.thisTime = w.totalTime;
3240 reportActivityLaunchedLocked(boolean timeout, ActivityRecord r, long thisTime, long totalTime) argument
/frameworks/base/core/java/android/app/
H A DIActivityManager.java418 public long totalTime; field in class:IActivityManager.WaitResult
432 dest.writeLong(totalTime);
451 totalTime = source.readLong();

Completed in 477 milliseconds