/aosp12/frameworks/native/libs/gui/ |
H A D | WindowInfo.cpp | 63 info.packageName == packageName && info.inputFeatures == inputFeatures && in operator ==() 112 parcel->writeInt32(inputFeatures.get()) ?: in writeToParcel() 178 inputFeatures = Flags<Feature>(parcel->readInt32()); in readFromParcel()
|
/aosp12/frameworks/native/libs/gui/tests/ |
H A D | WindowInfo_test.cpp | 74 i.inputFeatures = WindowInfo::Feature::DISABLE_USER_ACTIVITY; in TEST() 113 ASSERT_EQ(i.inputFeatures, i2.inputFeatures); in TEST()
|
/aosp12/frameworks/base/core/jni/ |
H A D | android_hardware_input_InputWindowHandle.cpp | 74 jfieldID inputFeatures; member 176 mInfo.inputFeatures = static_cast<WindowInfo::Feature>( in updateInfo() 177 env->GetIntField(obj, gInputWindowHandleClassInfo.inputFeatures)); in updateInfo() 316 env->SetIntField(inputWindowHandle, gInputWindowHandleClassInfo.inputFeatures, in android_view_InputWindowHandle_fromWindowInfo() 317 static_cast<int32_t>(windowInfo.inputFeatures.get())); in android_view_InputWindowHandle_fromWindowInfo() 444 GET_FIELD_ID(gInputWindowHandleClassInfo.inputFeatures, clazz, in register_android_view_InputWindowHandle()
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | InputWindowHandleWrapper.java | 212 if (mHandle.inputFeatures == features) { in setInputFeatures() 215 mHandle.inputFeatures = features; in setInputFeatures()
|
H A D | InputConsumerImpl.java | 81 mWindowHandle.inputFeatures = 0; in InputConsumerImpl()
|
H A D | TaskPositioner.java | 245 mDragWindowHandle.inputFeatures = 0; in register()
|
H A D | DragState.java | 369 mDragWindowHandle.inputFeatures = 0; in InputInterceptor()
|
H A D | InputMonitor.java | 291 inputWindowHandle.setInputFeatures(w.mAttrs.inputFeatures); in populateInputWindowHandle()
|
H A D | DisplayPolicy.java | 3282 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
|
H A D | WindowManagerService.java | 1688 && (attrs.inputFeatures & INPUT_FEATURE_NO_INPUT_CHANNEL) == 0); in addWindow() 8401 h.inputFeatures = 0; in updateInputChannel()
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | WindowManager.java | 3366 public int inputFeatures; field in WindowManager.LayoutParams 3907 out.writeInt(inputFeatures); in writeToParcel() 3988 inputFeatures = in.readInt(); in LayoutParams() 4226 if (inputFeatures != o.inputFeatures) { in copyFrom() 4227 inputFeatures = o.inputFeatures; in copyFrom() 4446 if (inputFeatures != 0) { in toString() 4447 sb.append(" if=").append(inputFeatureToString(inputFeatures)); in toString() 4571 proto.write(INPUT_FEATURE_FLAGS, inputFeatures); in dumpDebug()
|
H A D | InputWindowHandle.java | 111 public int inputFeatures; field in InputWindowHandle
|
H A D | WindowlessWindowManager.java | 149 if (((attrs.inputFeatures & in addToDisplay()
|
H A D | ViewRootImpl.java | 1128 if ((mWindowAttributes.inputFeatures in setView()
|
/aosp12/frameworks/native/libs/gui/include/gui/ |
H A D | WindowInfo.h | 199 Flags<Feature> inputFeatures; member
|
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
H A D | WindowStateTests.java | 747 win.mAttrs.inputFeatures = WindowManager.LayoutParams.INPUT_FEATURE_DISABLE_USER_ACTIVITY; in testUpdateInputWindowHandle() 762 assertEquals(win.mAttrs.inputFeatures, handle.inputFeatures); in testUpdateInputWindowHandle() 797 handle.inputFeatures); in testUpdateInputWindowHandle()
|
/aosp12/frameworks/native/services/surfaceflinger/ |
H A D | Layer.cpp | 2322 if (mDrawingState.inputInfo.inputFeatures.test(WindowInfo::Feature::NO_INPUT_CHANNEL)) { in handleDropInputMode() 2329 info.inputFeatures |= WindowInfo::Feature::DROP_INPUT; in handleDropInputMode() 2342 info.inputFeatures |= WindowInfo::Feature::DROP_INPUT; in handleDropInputMode() 2350 info.inputFeatures |= WindowInfo::Feature::DROP_INPUT_IF_OBSCURED; in handleDropInputMode() 2362 info.inputFeatures |= WindowInfo::Feature::DROP_INPUT; in handleDropInputMode() 2370 info.inputFeatures |= WindowInfo::Feature::DROP_INPUT_IF_OBSCURED; in handleDropInputMode() 2379 mDrawingState.inputInfo.inputFeatures = WindowInfo::Feature::NO_INPUT_CHANNEL; in fillInputInfo()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | NotificationShadeWindowControllerImpl.java | 419 mLpChanged.inputFeatures |= in applyInputFeatures() 422 mLpChanged.inputFeatures &= in applyInputFeatures()
|
/aosp12/frameworks/native/services/inputflinger/dispatcher/ |
H A D | InputDispatcher.cpp | 2669 info->flags.string().c_str(), info->inputFeatures.string().c_str(), in dumpWindowForTouchOcclusion() 2751 if (info->inputFeatures.test(WindowInfo::Feature::DISABLE_USER_ACTIVITY)) { in pokeUserActivityLocked() 4430 windowHandle.getInfo()->inputFeatures.test(WindowInfo::Feature::NO_INPUT_CHANNEL); in hasResponsiveConnectionLocked() 4481 info->inputFeatures.test(WindowInfo::Feature::NO_INPUT_CHANNEL); in updateWindowHandlesForDisplayLocked() 4543 window->getInfo()->inputFeatures.test(WindowInfo::Feature::NO_INPUT_CHANNEL); in setInputWindowsLocked() 5072 windowInfo->inputFeatures.string().c_str()); in dumpDispatchStateLocked() 6282 if (windowHandle->getInfo()->inputFeatures.test(WindowInfo::Feature::DROP_INPUT) || in shouldDropInput() 6283 (windowHandle->getInfo()->inputFeatures.test(WindowInfo::Feature::DROP_INPUT_IF_OBSCURED) && in shouldDropInput() 6288 windowHandle->getInfo()->inputFeatures.string().c_str(), in shouldDropInput()
|
/aosp12/frameworks/native/services/inputflinger/tests/ |
H A D | InputDispatcher_test.cpp | 984 void setInputFeatures(WindowInfo::Feature features) { mInfo.inputFeatures = features; } in setInputFeatures() 1118 mInfo.inputFeatures.test(WindowInfo::Feature::NO_INPUT_CHANNEL)) { in assertNoEvents()
|