Home
last modified time | relevance | path

Searched refs:mLastTime (Results 1 – 19 of 19) sorted by relevance

/aosp12/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DThroughputFilter.java28 private long mLastTime = 0; field in ThroughputFilter
61 mLastTime = 0; in onOpen()
73 if (mLastTime == 0) { in onProcess()
74 mLastTime = SystemClock.elapsedRealtime(); in onProcess()
79 if ((curTime - mLastTime) >= (mPeriod * 1000)) { in onProcess()
84 curTime - mLastTime, in onProcess()
89 mLastTime = curTime; in onProcess()
/aosp12/frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
H A DThroughputFilter.java36 private long mLastTime = 0; field in ThroughputFilter
67 mLastTime = 0; in open()
81 if (mLastTime == 0) { in process()
82 mLastTime = SystemClock.elapsedRealtime(); in process()
87 if ((curTime - mLastTime) >= (mPeriod * 1000)) { in process()
97 mLastTime = curTime; in process()
/aosp12/system/media/audio_utils/include/audio_utils/
H A DErrorLog.h77 && nowNs - mEntries[mIdx].mLastTime < mAggregateNs) { in log()
79 mEntries[mIdx].mLastTime = nowNs; in log()
121 if (entry.mCount == 0 || entry.mLastTime < limitNs) {
135 << " " << audio_utils_time_string_from_ns(entry.mLastTime).time << "\n";
166 , mLastTime(0) in Entry()
175 mLastTime = time; in setFirstError()
181 int64_t mLastTime; // last time of the error code. member
/aosp12/frameworks/base/services/core/java/com/android/server/display/whitebalance/
H A DDisplayWhiteBalanceThrottler.java36 private long mLastTime; // Milliseconds field in DisplayWhiteBalanceThrottler
92 if (mLastTime != -1 && (tooSoon(value) || tooClose(value))) { in throttle()
96 mLastTime = System.currentTimeMillis(); in throttle()
105 mLastTime = -1; in clear()
138 writer.println(" mLastTime=" + mLastTime); in dump()
183 earliestTime = mLastTime + mIncreaseDebounce; in tooSoon()
185 earliestTime = mLastTime + mDecreaseDebounce; in tooSoon()
/aosp12/frameworks/av/services/oboeservice/
H A DTimestampScheduler.cpp26 mLastTime = startTime; in start()
30 int64_t periodsElapsed = (mLastTime - mStartTime) / mBurstPeriod; in nextAbsoluteTime()
42 mLastTime += sleepTime; in nextAbsoluteTime()
43 return mLastTime; in nextAbsoluteTime()
H A DTimestampScheduler.h64 int64_t mLastTime = 0; variable
/aosp12/packages/apps/DeskClock/src/com/android/deskclock/
H A DStopwatchTextController.kt31 private var mLastTime = Long.MIN_VALUE regex
36 if (mLastTime / 10 == accumulatedTime / 10) {
53 if (mLastTime / DateUtils.SECOND_IN_MILLIS !=
59 mLastTime = accumulatedTime
/aosp12/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DBatteryFlagParser.java32 private long mLastTime; field in BatteryFlagParser
56 mLastTime = time; in onDataPoint()
62 mData.put((int) mLastTime, false); in onDataGap()
70 mData.put((int) mLastTime, false); in onParsingDone()
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/base/
H A DDebugHelper.java55 private long mLastTime; field in DebugHelper
86 if (time == mLastTime) { in debugCheck()
89 mLastTime = time; in debugCheck()
/aosp12/frameworks/base/tests/UsageStatsTest/src/com/android/tests/usagestats/
H A DUsageLogActivity.java38 private long mLastTime; field in UsageLogActivity
44 mLastTime = System.currentTimeMillis() - USAGE_STATS_PERIOD; in onCreate()
65 UsageEvents events = mUsageStatsManager.queryEvents(mLastTime, now); in run()
68 mLastTime = lastEventTime + 1; in run()
/aosp12/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
H A DViewfinderProcessor.java34 long mLastTime; field in ViewfinderProcessor
117 long time = System.currentTimeMillis() - mLastTime; in run()
119 mLastTime += time; in run()
/aosp12/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
H A DImportantNoticeUtilsTests.java55 private Long mLastTime; field in ImportantNoticeUtilsTests.ImportantNoticePreferences
96 mLastTime = getLong(KEY_TIMESTAMP_OF_CONTACTS_NOTICE); in save()
100 putLong(KEY_TIMESTAMP_OF_CONTACTS_NOTICE, mLastTime); in restore()
/aosp12/frameworks/av/media/libstagefright/
H A DVideoFrameSchedulerBase.cpp63 mLastTime(-1), in PLL()
71 mLastTime = -1; in reset()
267 if (mLastTime >= 0 in addSample()
269 && (time > mLastTime + kMaxAllowedFrameSkip || time < mLastTime)) { in addSample()
273 mLastTime = time; in addSample()
/aosp12/frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
H A DGL2CameraEye.java324 mLastTime = 0; in onSurfaceCreated()
344 if (mLastTime == 0) in doPhysics()
345 mLastTime = timestamp; in doPhysics()
347 float deltaT = (timestamp - mLastTime)/1000000000.f; // To seconds in doPhysics()
355 mLastTime = timestamp; in doPhysics()
497 private long mLastTime; field in CamRenderer
/aosp12/frameworks/base/tests/DozeTest/src/com/android/dreams/dozetest/
H A DDozeTestDream.java69 private long mLastTime = Long.MIN_VALUE; field in DozeTestDream
141 if (mLastTime == now) { in performTimeUpdate()
145 mLastTime = now; in performTimeUpdate()
/aosp12/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
H A DViewfinderProcessor.java45 long mLastTime; field in ViewfinderProcessor
181 long time = System.currentTimeMillis() - mLastTime; in run()
183 mLastTime += time; in run()
/aosp12/frameworks/av/media/libstagefright/include/media/stagefright/
H A DVideoFrameSchedulerBase.h76 nsecs_t mLastTime; // last input time member
/aosp12/frameworks/base/core/java/android/view/
H A DViewRootImpl.java6658 private long mLastTime; field in ViewRootImpl.SyntheticTrackballHandler
6663 if ((mLastTime + MAX_TRACKBALL_DELAY) < curTime) { in process()
6668 mLastTime = curTime; in process()
6758 mLastTime = curTime; in process()
6763 mLastTime = Integer.MIN_VALUE; in cancel()
/aosp12/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt67842 Landroid/view/ViewRootImpl$SyntheticTrackballHandler;->mLastTime:J
77017 Lcom/android/internal/os/BatteryStatsImpl$Timer;->mLastTime:J