Home
last modified time | relevance | path

Searched refs:applicationHandle (Results 1 – 10 of 10) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DAnrController.java60 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 DInputManagerCallback.java92 public void notifyNoFocusedWindowAnr(@NonNull InputApplicationHandle applicationHandle) { in notifyNoFocusedWindowAnr() argument
94 applicationHandle, "Application does not have a focused window"); in notifyNoFocusedWindowAnr()
H A DWindowManagerService.java8358 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 DInputDispatcher_benchmarks.cpp59 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 Dandroid_hardware_input_InputWindowHandle.cpp258 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 DInputDispatcher.cpp2725 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 DInputDispatcher.h542 std::string getApplicationWindowLabel(const InputApplicationHandle* applicationHandle,
/aosp12/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp1009 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 DInputDispatcher_test.cpp335 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 DInputManagerService.java3102 void notifyNoFocusedWindowAnr(InputApplicationHandle applicationHandle); in notifyNoFocusedWindowAnr() argument