Home
last modified time | relevance | path

Searched refs:timeTaken (Results 1 – 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/codecs/avcdec/
DSoftAVCDec.cpp563 nsecs_t timeDelay, timeTaken; in onQueueFilled() local
614 timeTaken = mTimeEnd - mTimeStart; in onQueueFilled()
617 (long long) (timeTaken / 1000LL), (long long) (timeDelay / 1000LL), in onQueueFilled()
/frameworks/av/media/libstagefright/codecs/hevcdec/
DSoftHEVC.cpp553 WORD32 timeDelay, timeTaken; in onQueueFilled() local
604 TIME_DIFF(mTimeStart, mTimeEnd, timeTaken); in onQueueFilled()
606 ALOGV("timeTaken=%6d delay=%6d numBytes=%6d", timeTaken, timeDelay, in onQueueFilled()
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
DSoftMPEG2.cpp684 WORD32 timeDelay, timeTaken; in onQueueFilled() local
714 TIME_DIFF(mTimeStart, mTimeEnd, timeTaken); in onQueueFilled()
716 ALOGV("timeTaken=%6d delay=%6d numBytes=%6d", timeTaken, timeDelay, in onQueueFilled()
/frameworks/av/media/codec2/components/hevc/
DC2SoftHevcEnc.cpp894 uint64_t timeTaken = 0; in process() local
914 TIME_DIFF(mTimeStart, mTimeEnd, timeTaken); in process()
916 ALOGV("timeTaken=%6d delay=%6d numBytes=%6d", (int)timeTaken, in process()
/frameworks/av/media/libstagefright/codecs/avcenc/
DSoftAVCEnc.cpp1276 WORD32 timeDelay, timeTaken; in onQueueFilled() local
1424 TIME_DIFF(mTimeStart, mTimeEnd, timeTaken); in onQueueFilled()
1426 ALOGV("timeTaken=%6d delay=%6d numBytes=%6d", timeTaken, timeDelay, in onQueueFilled()
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java3932 final long timeTaken = dumpJavaTracesTombstoned(firstPids.get(i), tracesFile, in dumpStackTraces() local
3935 remainingTime -= timeTaken; in dumpStackTraces()
3943 Slog.d(TAG, "Done with pid " + firstPids.get(i) + " in " + timeTaken + "ms"); in dumpStackTraces()
3957 final long timeTaken = SystemClock.elapsedRealtime() - start; in dumpStackTraces() local
3959 remainingTime -= timeTaken; in dumpStackTraces()
3967 Slog.d(TAG, "Done with native pid " + pid + " in " + timeTaken + "ms"); in dumpStackTraces()
3977 final long timeTaken = dumpJavaTracesTombstoned(pid, tracesFile, remainingTime); in dumpStackTraces() local
3979 remainingTime -= timeTaken; in dumpStackTraces()
3987 Slog.d(TAG, "Done with extra pid " + pid + " in " + timeTaken + "ms"); in dumpStackTraces()
/frameworks/base/tests/net/java/com/android/server/
DConnectivityServiceTest.java3569 long timeTaken = durationOf(fn); in assertTimeLimit() local
3570 String msg = String.format("%s: took %dms, limit was %dms", descr, timeTaken, timeLimit); in assertTimeLimit()
3572 assertTrue(msg, timeTaken <= timeLimit); in assertTimeLimit()