/aosp12/frameworks/base/core/java/android/view/ |
H A D | InputWindowHandle.java | 41 public InputApplicationHandle inputApplicationHandle; field in InputWindowHandle 145 public InputWindowHandle(InputApplicationHandle inputApplicationHandle, int displayId) { in InputWindowHandle() argument 146 this.inputApplicationHandle = inputApplicationHandle; in InputWindowHandle()
|
/aosp12/frameworks/base/core/jni/ |
H A D | android_hardware_input_InputWindowHandle.cpp | 52 jfieldID inputApplicationHandle; member 182 gInputWindowHandleClassInfo.inputApplicationHandle); in updateInfo() 184 std::shared_ptr<InputApplicationHandle> inputApplicationHandle = in updateInfo() local 186 if (inputApplicationHandle != nullptr) { in updateInfo() 187 inputApplicationHandle->updateInfo(); in updateInfo() 188 mInfo.applicationInfo = *(inputApplicationHandle->getInfo()); in updateInfo() 381 GET_FIELD_ID(gInputWindowHandleClassInfo.inputApplicationHandle, clazz, in register_android_view_InputWindowHandle()
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | InputWindowHandleWrapper.java | 72 return mHandle.inputApplicationHandle; in getInputApplicationHandle() 76 if (mHandle.inputApplicationHandle == handle) { in setInputApplicationHandle() 79 mHandle.inputApplicationHandle = handle; in setInputApplicationHandle()
|
/aosp12/frameworks/native/services/inputflinger/benchmarks/ |
H A D | InputDispatcher_benchmarks.cpp | 184 FakeWindowHandle(const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle, in FakeWindowHandle() argument 187 inputApplicationHandle->updateInfo(); in FakeWindowHandle() 189 mInfo.applicationInfo = *inputApplicationHandle->getInfo(); in FakeWindowHandle()
|
/aosp12/frameworks/native/services/inputflinger/dispatcher/include/ |
H A D | InputDispatcherInterface.h | 101 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) = 0;
|
H A D | InputDispatcherPolicyInterface.h | 51 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) = 0;
|
/aosp12/frameworks/native/services/inputflinger/dispatcher/ |
H A D | Entry.h | 280 std::shared_ptr<InputApplicationHandle> inputApplicationHandle; member
|
H A D | InputDispatcher.h | 118 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) override; 358 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) REQUIRES(mLock);
|
H A D | InputDispatcher.cpp | 4655 int32_t displayId, const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) { in setFocusedApplication() argument 4658 inputApplicationHandle ? inputApplicationHandle->getName().c_str() : "<nullptr>"); in setFocusedApplication() 4662 setFocusedApplicationLocked(displayId, inputApplicationHandle); in setFocusedApplication() 4670 int32_t displayId, const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) { in setFocusedApplicationLocked() argument 4674 if (sharedPointersEqual(oldFocusedApplicationHandle, inputApplicationHandle)) { in setFocusedApplicationLocked() 4679 if (inputApplicationHandle != nullptr) { in setFocusedApplicationLocked() 4680 mFocusedApplicationHandlesByDisplay[displayId] = inputApplicationHandle; in setFocusedApplicationLocked() 5589 commandEntry->inputApplicationHandle = std::move(application); in onAnrLocked() 5666 mPolicy->notifyNoFocusedWindowAnr(commandEntry->inputApplicationHandle); in doNotifyNoFocusedWindowAnrLockedInterruptible()
|
/aosp12/frameworks/base/services/core/jni/ |
H A D | com_android_server_input_InputManagerService.cpp | 793 JNIEnv* env, const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) { in getInputApplicationHandleObjLocalRef() argument 794 if (inputApplicationHandle == nullptr) { in getInputApplicationHandleObjLocalRef() 798 static_cast<NativeInputApplicationHandle*>(inputApplicationHandle.get()); in getInputApplicationHandleObjLocalRef() 804 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) { in notifyNoFocusedWindowAnr() argument 814 getInputApplicationHandleObjLocalRef(env, inputApplicationHandle); in notifyNoFocusedWindowAnr()
|
/aosp12/frameworks/native/services/inputflinger/tests/ |
H A D | InputDispatcher_test.cpp | 908 FakeWindowHandle(const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle, in FakeWindowHandle() argument 919 inputApplicationHandle->updateInfo(); in FakeWindowHandle() 920 mInfo.applicationInfo = *inputApplicationHandle->getInfo(); in FakeWindowHandle() 946 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle, in clone() argument 949 new FakeWindowHandle(inputApplicationHandle, dispatcher, mInfo.name + "(Mirror)", in clone()
|
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
H A D | WindowStateTests.java | 761 handle.inputApplicationHandle); in testUpdateInputWindowHandle()
|
/aosp12/frameworks/base/services/core/java/com/android/server/input/ |
H A D | InputManagerService.java | 2745 private void notifyNoFocusedWindowAnr(InputApplicationHandle inputApplicationHandle) { in notifyNoFocusedWindowAnr() argument 2746 mWindowManagerCallbacks.notifyNoFocusedWindowAnr(inputApplicationHandle); in notifyNoFocusedWindowAnr()
|