Searched refs:INVALID_TIME (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/latencyreport/
H A DLatencyReport.java25 public static final long INVALID_TIME = -1; field in class:LatencyReport
49 private long mCallBlockingTimeMillis = INVALID_TIME;
52 private long mCallNotificationTimeMillis = INVALID_TIME;
55 private long mInCallUiShownTimeMillis = INVALID_TIME;
63 mCreatedTimeMillis = INVALID_TIME;
64 mTelecomRoutingStartTimeMillis = INVALID_TIME;
65 mTelecomRoutingEndTimeMillis = INVALID_TIME;
73 mCreatedTimeMillis = INVALID_TIME;
74 mTelecomRoutingStartTimeMillis = INVALID_TIME;
75 mTelecomRoutingEndTimeMillis = INVALID_TIME;
[all...]
/packages/apps/Dialer/java/com/android/dialer/performancereport/
H A DPerformanceReport.java32 private static final long INVALID_TIME = -1; field in class:PerformanceReport
50 private static long appLaunchTimeMillis = INVALID_TIME;
51 private static long firstClickTimeMillis = INVALID_TIME;
52 private static long lastActionTimeMillis = INVALID_TIME;
124 if (appLaunchTimeMillis == INVALID_TIME) {
125 return INVALID_TIME;
131 if (firstClickTimeMillis == INVALID_TIME) {
132 return INVALID_TIME;
/packages/apps/TV/tests/unit/src/com/android/tv/
H A DCurrentPositionMediatorTest.java19 import static com.android.tv.TimeShiftManager.INVALID_TIME;
46 assertCurrentPositionMediator(INVALID_TIME, currentTimeMs);
54 assertNotSame("Seek request time", INVALID_TIME, mMediator.mSeekRequestTimeMs);
65 assertNotSame("Seek request time", INVALID_TIME, mMediator.mSeekRequestTimeMs);
77 assertCurrentPositionMediator(INVALID_TIME, newCurrentTimeMs);
/packages/apps/TV/src/com/android/tv/
H A DTimeShiftManager.java104 static final long INVALID_TIME = -1; field in class:TimeShiftManager
212 return oldestProgramStartTime == INVALID_TIME ? INVALID_TIME
445 SoftPreconditions.checkState(mCurrentPositionMediator.mCurrentPositionMs != INVALID_TIME);
678 mAvailablityChangedTimeMs = INVALID_TIME;
680 mRecordStartTimeMs = INVALID_TIME;
681 mRecordEndTimeMs = INVALID_TIME;
868 if (channel == null || channel.isPassthrough() || currentPositionMs == INVALID_TIME) {
1104 return INVALID_TIME;
1275 mSeekRequestTimeMs = INVALID_TIME;
[all...]
/packages/apps/TV/src/com/android/tv/dvr/ui/browse/
H A DDetailsContent.java37 public static final long INVALID_TIME = -1; field in class:DetailsContent
180 mDetailsContent.mStartTimeUtcMillis = INVALID_TIME;
181 mDetailsContent.mEndTimeUtcMillis = INVALID_TIME;
H A DDetailsContentPresenter.java273 if (detailsContent.getStartTimeUtcMillis() != DetailsContent.INVALID_TIME
274 && detailsContent.getEndTimeUtcMillis() != DetailsContent.INVALID_TIME) {
/packages/apps/TV/src/com/android/tv/tuner/tvinput/
H A DTunerSessionWorker.java144 private static final long INVALID_TIME = -1; field in class:TunerSessionWorker
266 mPreparingStartTimeMs = INVALID_TIME;
267 mBufferingStartTimeMs = INVALID_TIME;
268 mReadyStartTimeMs = INVALID_TIME;
415 mReadyStartTimeMs = INVALID_TIME;
416 mPreparingStartTimeMs = INVALID_TIME;
417 mBufferingStartTimeMs = INVALID_TIME;
1043 long bufferingTimeMs = mBufferingStartTimeMs != INVALID_TIME
1045 long preparingTimeMs = mPreparingStartTimeMs != INVALID_TIME
1072 boolean isPlaybackStable = mReadyStartTimeMs != INVALID_TIME
[all...]

Completed in 312 milliseconds