Home
last modified time | relevance | path

Searched refs:INVALID_TIME (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/latencyreport/
DLatencyReport.java25 public static final long INVALID_TIME = -1; field in LatencyReport
49 private long callBlockingTimeMillis = INVALID_TIME;
52 private long callNotificationTimeMillis = INVALID_TIME;
55 private long inCallUiShownTimeMillis = INVALID_TIME;
63 createdTimeMillis = INVALID_TIME; in LatencyReport()
64 telecomRoutingStartTimeMillis = INVALID_TIME; in LatencyReport()
65 telecomRoutingEndTimeMillis = INVALID_TIME; in LatencyReport()
73 createdTimeMillis = INVALID_TIME; in LatencyReport()
74 telecomRoutingStartTimeMillis = INVALID_TIME; in LatencyReport()
75 telecomRoutingEndTimeMillis = INVALID_TIME; in LatencyReport()
[all …]
/packages/apps/Dialer/java/com/android/dialer/performancereport/
DPerformanceReport.java32 private static final long INVALID_TIME = -1; field in 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) { in getTimeSinceAppLaunch()
125 return INVALID_TIME; in getTimeSinceAppLaunch()
131 if (firstClickTimeMillis == INVALID_TIME) { in getTimeSinceFirstClick()
132 return INVALID_TIME; in getTimeSinceFirstClick()
/packages/apps/TV/tests/unit/src/com/android/tv/
DCurrentPositionMediatorTest.java19 import static com.android.tv.TimeShiftManager.INVALID_TIME;
48 assertCurrentPositionMediator(INVALID_TIME, currentTimeMs); in testInitialize()
58 .isNotSameInstanceAs(INVALID_TIME); in testOnSeekRequested()
73 .isNotSameInstanceAs(INVALID_TIME); in testOnCurrentPositionChangedInvalidInput()
89 assertCurrentPositionMediator(INVALID_TIME, newCurrentTimeMs); in testOnCurrentPositionChangedValidInput()
/packages/apps/TV/src/com/android/tv/
DTimeShiftManager.java114 @VisibleForTesting static final long INVALID_TIME = -1; field in TimeShiftManager
217 return oldestProgramStartTime == INVALID_TIME in getRecordStartTimeMs()
218 ? INVALID_TIME in getRecordStartTimeMs()
451 SoftPreconditions.checkState(mCurrentPositionMediator.mCurrentPositionMs != INVALID_TIME); in updateCurrentProgram()
700 mAvailablityChangedTimeMs = INVALID_TIME; in onAvailabilityChanged()
702 mRecordStartTimeMs = INVALID_TIME; in onAvailabilityChanged()
703 mRecordEndTimeMs = INVALID_TIME; in onAvailabilityChanged()
901 if (channel == null || channel.isPassthrough() || currentPositionMs == INVALID_TIME) { in onAvailabilityChanged()
1145 return INVALID_TIME; in getOldestProgramStartTime()
1332 mSeekRequestTimeMs = INVALID_TIME; in initialize()
[all …]
/packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
DTunerSessionWorker.java161 private static final long INVALID_TIME = -1; field in TunerSessionWorker
348 mPreparingStartTimeMs = INVALID_TIME; in TunerSessionWorker()
349 mBufferingStartTimeMs = INVALID_TIME; in TunerSessionWorker()
350 mReadyStartTimeMs = INVALID_TIME; in TunerSessionWorker()
499 mReadyStartTimeMs = INVALID_TIME; in onStateChanged()
500 mPreparingStartTimeMs = INVALID_TIME; in onStateChanged()
501 mBufferingStartTimeMs = INVALID_TIME; in onStateChanged()
1293 mBufferingStartTimeMs != INVALID_TIME in handleMessageCheckSignal()
1297 mPreparingStartTimeMs != INVALID_TIME in handleMessageCheckSignal()
1333 mReadyStartTimeMs != INVALID_TIME in handleMessageCheckSignal()
[all …]
DTunerSessionWorkerExoV2.java150 private static final long INVALID_TIME = -1; field in TunerSessionWorkerExoV2
336 mBufferingStartTimeMs = INVALID_TIME; in TunerSessionWorkerExoV2()
337 mReadyStartTimeMs = INVALID_TIME; in TunerSessionWorkerExoV2()
474 mReadyStartTimeMs = INVALID_TIME; in onStateChanged()
475 mBufferingStartTimeMs = INVALID_TIME; in onStateChanged()
1241 mBufferingStartTimeMs != INVALID_TIME in handleMessageCheckSignal()
1274 mReadyStartTimeMs != INVALID_TIME in handleMessageCheckSignal()
1642 mBufferingStartTimeMs = INVALID_TIME; in stopPlayback()
1643 mReadyStartTimeMs = INVALID_TIME; in stopPlayback()
/packages/apps/TV/src/com/android/tv/dvr/ui/browse/
DDetailsContent.java36 public static final long INVALID_TIME = -1; field in DetailsContent
227 mDetailsContent.mStartTimeUtcMillis = INVALID_TIME; in Builder()
228 mDetailsContent.mEndTimeUtcMillis = INVALID_TIME; in Builder()
DDetailsContentPresenter.java301 if (detailsContent.getStartTimeUtcMillis() != DetailsContent.INVALID_TIME in onBindViewHolder()
302 && detailsContent.getEndTimeUtcMillis() != DetailsContent.INVALID_TIME) { in onBindViewHolder()
/packages/apps/TV/src/com/android/tv/dvr/ui/playback/
DDvrPlaybackControlHelper.java57 private static final long INVALID_TIME = -1; field in DvrPlaybackControlHelper
62 private long mProgramStartTimeMs = INVALID_TIME;
89 if (mProgramStartTimeMs != INVALID_TIME) { in DvrPlaybackControlHelper()
DDvrPlaybackOverlayFragment.java72 private static final long INVALID_TIME = -1; field in DvrPlaybackOverlayFragment
538 : INVALID_TIME; in getProgramStartTimeMs()