Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/view/
H A DInputWindowHandle.java135 public boolean replaceTouchableRegionWithCrop; field in InputWindowHandle
180 public void replaceTouchableRegionWithCrop(@Nullable SurfaceControl bounds) { in replaceTouchableRegionWithCrop() method in InputWindowHandle
182 replaceTouchableRegionWithCrop = true; in replaceTouchableRegionWithCrop()
/aosp12/frameworks/native/libs/gui/
H A DWindowInfo.cpp65 info.replaceTouchableRegionWithCrop == replaceTouchableRegionWithCrop && in operator ==()
117 parcel->writeBool(replaceTouchableRegionWithCrop) ?: in writeToParcel()
184 parcel->readBool(&replaceTouchableRegionWithCrop); in readFromParcel()
/aosp12/frameworks/native/libs/gui/tests/
H A DWindowInfo_test.cpp77 i.replaceTouchableRegionWithCrop = true; in TEST()
116 ASSERT_EQ(i.replaceTouchableRegionWithCrop, i2.replaceTouchableRegionWithCrop); in TEST()
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DInputWindowHandleWrapper.java272 if (mHandle.replaceTouchableRegionWithCrop == replace) { in setReplaceTouchableRegionWithCrop()
275 mHandle.replaceTouchableRegionWithCrop = replace; in setReplaceTouchableRegionWithCrop()
H A DInputMonitor.java605 mPipInputConsumer.mWindowHandle.replaceTouchableRegionWithCrop( in accept()
H A DWindowManagerService.java8404 h.replaceTouchableRegionWithCrop(null); in updateInputChannel()
8407 h.replaceTouchableRegionWithCrop = false; in updateInputChannel()
/aosp12/frameworks/base/core/jni/
H A Dandroid_hardware_input_InputWindowHandle.cpp76 jfieldID replaceTouchableRegionWithCrop; member
193 mInfo.replaceTouchableRegionWithCrop = env->GetBooleanField(obj, in updateInfo()
194 gInputWindowHandleClassInfo.replaceTouchableRegionWithCrop); in updateInfo()
450 GET_FIELD_ID(gInputWindowHandleClassInfo.replaceTouchableRegionWithCrop, clazz, in register_android_view_InputWindowHandle()
/aosp12/frameworks/native/libs/gui/include/gui/
H A DWindowInfo.h203 bool replaceTouchableRegionWithCrop = false; member
/aosp12/frameworks/native/services/surfaceflinger/
H A DLayerProtoHelper.cpp174 proto->set_replace_touchable_region_with_crop(inputInfo.replaceTouchableRegionWithCrop); in writeToProto()
H A DLayer.cpp2430 if (info.replaceTouchableRegionWithCrop) { in fillInputInfo()
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DWindowStateTests.java758 assertFalse(handle.replaceTouchableRegionWithCrop); in testUpdateInputWindowHandle()