Home
last modified time | relevance | path

Searched refs:INVALID_DELAY (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DActivityMetricsLogger.java117 private static final int INVALID_DELAY = -1; field in ActivityMetricsLogger
186 private int startingWindowDelayMs = INVALID_DELAY;
187 private int bindApplicationDelayMs = INVALID_DELAY;
223 this(info, launchedActivity, INVALID_DELAY); in WindowingModeTransitionInfoSnapshot()
625 mCurrentTransitionDelayMs = INVALID_DELAY; in reset()
714 if (info.startingWindowDelayMs != INVALID_DELAY) { in logAppTransition()
718 if (info.bindApplicationDelayMs != INVALID_DELAY) { in logAppTransition()
DActivityStackSupervisor.java30 import static android.app.WaitResult.INVALID_DELAY;
1274 reportActivityLaunchedLocked(fromTimeout, r, INVALID_DELAY, in activityIdleInternalLocked()
DActivityRecord.java37 import static android.app.WaitResult.INVALID_DELAY;
2400 final int windowsDrawnDelayMs = info != null ? info.windowsDrawnDelayMs : INVALID_DELAY; in onWindowsDrawn()
/frameworks/base/core/java/android/app/
DWaitResult.java65 public static final int INVALID_DELAY = -1; field in WaitResult