Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DAsyncRotationController.java177 action = Operation.ACTION_SEAMLESS; in accept()
184 ? Operation.ACTION_SEAMLESS : Operation.ACTION_FADE; in accept()
238 if (op.mIsCompletionPending || op.mAction == Operation.ACTION_SEAMLESS) { in updateTargetWindows()
278 } else if (op.mAction == Operation.ACTION_SEAMLESS in finishOp()
361 } else if (op.mAction == Operation.ACTION_SEAMLESS) { in start()
386 final Operation op = new Operation(Operation.ACTION_SEAMLESS); in updateRotation()
643 return op.mAction != Operation.ACTION_SEAMLESS; in canDrawBeforeStartTransaction()
659 @IntDef(value = { ACTION_SEAMLESS, ACTION_FADE, ACTION_TOGGLE_IME })
662 static final int ACTION_SEAMLESS = 1; field in AsyncRotationController.Operation