/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | AnrController.java | 60 void notifyAppUnresponsive(InputApplicationHandle applicationHandle, String reason) { in notifyAppUnresponsive() argument 64 activity = ActivityRecord.forTokenLocked(applicationHandle.token); in notifyAppUnresponsive() 66 Slog.e(TAG_WM, "Unknown app appToken:" + applicationHandle.name in notifyAppUnresponsive()
|
H A D | InputManagerCallback.java | 92 public void notifyNoFocusedWindowAnr(@NonNull InputApplicationHandle applicationHandle) { in notifyNoFocusedWindowAnr() argument 94 applicationHandle, "Application does not have a focused window"); in notifyNoFocusedWindowAnr()
|
H A D | WindowManagerService.java | 8358 final InputApplicationHandle applicationHandle; in grantInputChannel() local 8368 applicationHandle = win.getApplicationHandle(); in grantInputChannel() 8373 name, applicationHandle, flags, privateFlags, type, null /* region */, window); in grantInputChannel() local 8380 InputApplicationHandle applicationHandle, int flags, in updateInputChannel() argument 8382 InputWindowHandle h = new InputWindowHandle(applicationHandle, displayId); in updateInputChannel() 8428 final InputApplicationHandle applicationHandle; in updateInputChannel() local 8438 applicationHandle = win.getApplicationHandle(); in updateInputChannel() 8442 applicationHandle, flags, privateFlags, win.mWindowType, region, win.mClient); in updateInputChannel()
|
/aosp12/frameworks/native/services/inputflinger/benchmarks/ |
H A D | InputDispatcher_benchmarks.cpp | 59 const std::shared_ptr<InputApplicationHandle>& applicationHandle) override { in notifyNoFocusedWindowAnr() argument 60 ALOGE("There is no focused window for %s", applicationHandle->getName().c_str()); in notifyNoFocusedWindowAnr()
|
/aosp12/frameworks/base/core/jni/ |
H A D | android_hardware_input_InputWindowHandle.cpp | 258 applicationHandle(env, in android_view_InputWindowHandle_fromWindowInfo() local 264 applicationHandle.get(), windowInfo.displayId); in android_view_InputWindowHandle_fromWindowInfo()
|
/aosp12/frameworks/native/services/inputflinger/dispatcher/ |
H A D | InputDispatcher.cpp | 2725 const InputApplicationHandle* applicationHandle, const sp<WindowInfoHandle>& windowHandle) { in getApplicationWindowLabel() argument 2726 if (applicationHandle != nullptr) { in getApplicationWindowLabel() 2728 return applicationHandle->getName() + " - " + windowHandle->getName(); in getApplicationWindowLabel() 2730 return applicationHandle->getName(); in getApplicationWindowLabel() 4988 const std::shared_ptr<InputApplicationHandle>& applicationHandle = it.second; in dumpDispatchStateLocked() local 4990 applicationHandle->getDispatchingTimeout(DEFAULT_INPUT_DISPATCHING_TIMEOUT); in dumpDispatchStateLocked() 4993 displayId, applicationHandle->getName().c_str(), millis(timeout)); in dumpDispatchStateLocked()
|
H A D | InputDispatcher.h | 542 std::string getApplicationWindowLabel(const InputApplicationHandle* applicationHandle,
|
/aosp12/frameworks/base/services/core/jni/ |
H A D | com_android_server_input_InputManagerService.cpp | 1009 std::shared_ptr<InputApplicationHandle> applicationHandle = in setFocusedApplication() local 1011 applicationHandle->updateInfo(); in setFocusedApplication() 1012 mInputManager->getDispatcher()->setFocusedApplication(displayId, applicationHandle); in setFocusedApplication()
|
/aosp12/frameworks/native/services/inputflinger/tests/ |
H A D | InputDispatcher_test.cpp | 335 const std::shared_ptr<InputApplicationHandle>& applicationHandle) override { in notifyNoFocusedWindowAnr() argument 337 mAnrApplications.push(applicationHandle); in notifyNoFocusedWindowAnr()
|
/aosp12/frameworks/base/services/core/java/com/android/server/input/ |
H A D | InputManagerService.java | 3102 void notifyNoFocusedWindowAnr(InputApplicationHandle applicationHandle); in notifyNoFocusedWindowAnr() argument
|