Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DAppTransitionControllerTest.java1096 verify(activity0).setDropInputMode(DropInputMode.ALL); in testOverrideTaskFragmentAdapter_inputProtectedForUntrustedAnimation()
1097 verify(activity1).setDropInputMode(DropInputMode.ALL); in testOverrideTaskFragmentAdapter_inputProtectedForUntrustedAnimation()
1098 verify(activity2).setDropInputMode(DropInputMode.ALL); in testOverrideTaskFragmentAdapter_inputProtectedForUntrustedAnimation()
1109 verify(activity0).setDropInputMode(DropInputMode.OBSCURED); in testOverrideTaskFragmentAdapter_inputProtectedForUntrustedAnimation()
1110 verify(activity1).setDropInputMode(DropInputMode.NONE); in testOverrideTaskFragmentAdapter_inputProtectedForUntrustedAnimation()
1111 verify(activity2).setDropInputMode(DropInputMode.NONE); in testOverrideTaskFragmentAdapter_inputProtectedForUntrustedAnimation()
1145 verify(activity).setDropInputMode(DropInputMode.ALL); in testOverrideTaskFragmentAdapter_inputProtectedForTrustedAnimation()
1152 verify(activity).setDropInputMode(DropInputMode.NONE); in testOverrideTaskFragmentAdapter_inputProtectedForTrustedAnimation()
1187 verify(activity, never()).setDropInputMode(DropInputMode.ALL); in testOverrideTaskFragmentAdapter_noInputProtectedForFullyTrustedAnimation()
1298 doNothing().when(activity).setDropInputMode(anyInt()); in prepareActivityForAppTransition()
H A DAppTransitionTests.java433 doNothing().when(activity).setDropInputMode(anyInt()); in testActivityRecordReparentedToTaskFragment()
H A DTaskFragmentTest.java421 doNothing().when(activity).setDropInputMode(anyInt()); in testIsReadyToTransit()
H A DTransitionTests.java1776 doNothing().when(activity).setDropInputMode(anyInt()); in testReparentChangeLastParent()
1801 doNothing().when(activity).setDropInputMode(anyInt()); in testIncludeEmbeddedActivityReparent()
1969 doNothing().when(activity).setDropInputMode(anyInt()); in testCollectReparentChange()
H A DTaskFragmentOrganizerControllerTest.java912 doNothing().when(activity).setDropInputMode(anyInt()); in testApplyTransaction_reparentActivityToTaskFragment_triggerLifecycleUpdate()
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DActivityRecord.java1692 setDropInputMode(DropInputMode.ALL); in updateUntrustedEmbeddingInputProtection()
1695 setDropInputMode(DropInputMode.OBSCURED); in updateUntrustedEmbeddingInputProtection()
1698 setDropInputMode(DropInputMode.NONE); in updateUntrustedEmbeddingInputProtection()
1703 void setDropInputMode(@DropInputMode int mode) { in setDropInputMode() method in ActivityRecord
1707 .setDropInputMode(getSurfaceControl(), mode) in setDropInputMode()
H A DDisplayPolicy.java988 .setDropInputMode(win.getSurfaceControl(), DropInputMode.ALL).apply(); in setDropInputModePolicy()
/aosp14/frameworks/base/core/java/android/view/
H A DSurfaceControl.java3980 public Transaction setDropInputMode(SurfaceControl sc, @DropInputMode int mode) { in setDropInputMode() method in SurfaceControl.Transaction
/aosp14/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp975 transaction->setDropInputMode(ctrl, static_cast<gui::DropInputMode>(mode)); in nativeSetDropInputMode()