Home
last modified time | relevance | path

Searched refs:InputApplicationHandle (Results 1 – 25 of 29) sorted by relevance

12

/aosp12/frameworks/native/libs/gui/include/gui/
H A DInputApplication.h39 class InputApplicationHandle {
53 bool operator==(const InputApplicationHandle& other) const {
57 bool operator!=(const InputApplicationHandle& other) const { return !(*this == other); }
71 InputApplicationHandle() = default;
72 virtual ~InputApplicationHandle() = default;
/aosp12/frameworks/base/core/java/android/view/
H A DInputApplicationHandle.java28 public final class InputApplicationHandle { class
44 public InputApplicationHandle(@NonNull IBinder token, @NonNull String name, in InputApplicationHandle() method in InputApplicationHandle
51 public InputApplicationHandle(InputApplicationHandle handle) { in InputApplicationHandle() method in InputApplicationHandle
H A DInputWindowHandle.java41 public InputApplicationHandle inputApplicationHandle;
145 public InputWindowHandle(InputApplicationHandle inputApplicationHandle, int displayId) { in InputWindowHandle()
/aosp12/frameworks/base/core/jni/
H A Dandroid_hardware_input_InputApplicationHandle.h29 class NativeInputApplicationHandle : public InputApplicationHandle {
42 extern std::shared_ptr<InputApplicationHandle> android_view_InputApplicationHandle_getHandle(
H A Dandroid_hardware_input_InputApplicationHandle.cpp86 std::shared_ptr<InputApplicationHandle> android_view_InputApplicationHandle_getHandle( in android_view_InputApplicationHandle_getHandle()
H A Dandroid_hardware_input_InputWindowHandle.cpp184 std::shared_ptr<InputApplicationHandle> inputApplicationHandle = in updateInfo()
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DEmbeddedWindowController.java30 import android.view.InputApplicationHandle;
177 InputApplicationHandle getApplicationHandle() { in getApplicationHandle()
182 return new InputApplicationHandle( in getApplicationHandle()
H A DInputConsumerImpl.java28 import android.view.InputApplicationHandle;
39 final InputApplicationHandle mApplicationHandle;
66 mApplicationHandle = new InputApplicationHandle(new Binder(), name, in InputConsumerImpl()
H A DInputWindowHandleWrapper.java24 import android.view.InputApplicationHandle;
71 InputApplicationHandle getInputApplicationHandle() { in getInputApplicationHandle()
75 void setInputApplicationHandle(InputApplicationHandle handle) { in setInputApplicationHandle()
H A DInputManagerCallback.java30 import android.view.InputApplicationHandle;
92 public void notifyNoFocusedWindowAnr(@NonNull InputApplicationHandle applicationHandle) { in notifyNoFocusedWindowAnr()
H A DAnrController.java31 import android.view.InputApplicationHandle;
60 void notifyAppUnresponsive(InputApplicationHandle applicationHandle, String reason) { in notifyAppUnresponsive()
H A DTaskPositioner.java51 import android.view.InputApplicationHandle;
100 InputApplicationHandle mDragApplicationHandle;
228 mDragApplicationHandle = new InputApplicationHandle(new Binder(), TAG, in register()
H A DDragState.java54 import android.view.InputApplicationHandle;
343 InputApplicationHandle mDragApplicationHandle;
351 mDragApplicationHandle = new InputApplicationHandle(new Binder(), "drag", in InputInterceptor()
H A DActivityRecord.java307 import android.view.InputApplicationHandle;
440 private InputApplicationHandle mInputApplicationHandle;
1880 @NonNull InputApplicationHandle getInputApplicationHandle(boolean update) { in getInputApplicationHandle()
1882 mInputApplicationHandle = new InputApplicationHandle(appToken, toString(), in getInputApplicationHandle()
1888 mInputApplicationHandle = new InputApplicationHandle(appToken, name, in getInputApplicationHandle()
H A DWindowManagerService.java252 import android.view.InputApplicationHandle;
8358 final InputApplicationHandle applicationHandle; in grantInputChannel()
8380 InputApplicationHandle applicationHandle, int flags, in updateInputChannel()
8428 final InputApplicationHandle applicationHandle; in updateInputChannel()
/aosp12/frameworks/native/services/inputflinger/dispatcher/
H A DInputDispatcher.h118 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) override;
358 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) REQUIRES(mLock);
360 std::unordered_map<int32_t, std::shared_ptr<InputApplicationHandle>>
440 std::shared_ptr<InputApplicationHandle> mAwaitedFocusedApplication GUARDED_BY(mLock);
542 std::string getApplicationWindowLabel(const InputApplicationHandle* applicationHandle,
624 void onAnrLocked(std::shared_ptr<InputApplicationHandle> application) REQUIRES(mLock);
628 void updateLastAnrStateLocked(const InputApplicationHandle& application,
H A DEntry.h280 std::shared_ptr<InputApplicationHandle> inputApplicationHandle;
H A DInputDispatcher.cpp628 std::shared_ptr<InputApplicationHandle> focusedApplication = in processNoFocusedWindowAnrLocked()
1819 std::shared_ptr<InputApplicationHandle> focusedApplicationHandle = in findFocusedWindowTargetsLocked()
2725 const InputApplicationHandle* applicationHandle, const sp<WindowInfoHandle>& windowHandle) { in getApplicationWindowLabel()
4655 int32_t displayId, const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) { in setFocusedApplication()
4670 int32_t displayId, const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) { in setFocusedApplicationLocked()
4671 std::shared_ptr<InputApplicationHandle> oldFocusedApplicationHandle = in setFocusedApplicationLocked()
4988 const std::shared_ptr<InputApplicationHandle>& applicationHandle = it.second; in dumpDispatchStateLocked()
5582 void InputDispatcher::onAnrLocked(std::shared_ptr<InputApplicationHandle> application) { in onAnrLocked()
5606 void InputDispatcher::updateLastAnrStateLocked(const InputApplicationHandle& application, in updateLastAnrStateLocked()
/aosp12/frameworks/native/services/inputflinger/benchmarks/
H A DInputDispatcher_benchmarks.cpp59 const std::shared_ptr<InputApplicationHandle>& applicationHandle) override { in notifyNoFocusedWindowAnr()
126 class FakeApplicationHandle : public InputApplicationHandle {
184 FakeWindowHandle(const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle, in FakeWindowHandle()
/aosp12/frameworks/native/services/inputflinger/dispatcher/include/
H A DInputDispatcherInterface.h101 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) = 0;
H A DInputDispatcherPolicyInterface.h51 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) = 0;
/aosp12/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java97 import android.view.InputApplicationHandle;
312 int displayId, InputApplicationHandle application); in nativeSetFocusedApplication()
1746 public void setFocusedApplication(int displayId, InputApplicationHandle application) { in setFocusedApplication()
2745 private void notifyNoFocusedWindowAnr(InputApplicationHandle inputApplicationHandle) { in notifyNoFocusedWindowAnr()
3102 void notifyNoFocusedWindowAnr(InputApplicationHandle applicationHandle); in notifyNoFocusedWindowAnr()
/aosp12/frameworks/native/services/inputflinger/tests/
H A DInputDispatcher_test.cpp137 const std::shared_ptr<InputApplicationHandle>& expectedApplication) { in assertNotifyNoFocusedWindowAnrWasCalled()
138 std::shared_ptr<InputApplicationHandle> application; in assertNotifyNoFocusedWindowAnrWasCalled()
295 std::queue<std::shared_ptr<InputApplicationHandle>> mAnrApplications GUARDED_BY(mLock);
335 const std::shared_ptr<InputApplicationHandle>& applicationHandle) override { in notifyNoFocusedWindowAnr()
688 class FakeApplicationHandle : public InputApplicationHandle {
908 FakeWindowHandle(const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle, in FakeWindowHandle()
946 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle, in clone()
3392 std::shared_ptr<InputApplicationHandle> application = in SetUp()
/aosp12/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp313 void notifyNoFocusedWindowAnr(const std::shared_ptr<InputApplicationHandle>& handle) override;
793 JNIEnv* env, const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) { in getInputApplicationHandleObjLocalRef()
804 const std::shared_ptr<InputApplicationHandle>& inputApplicationHandle) { in notifyNoFocusedWindowAnr()
1009 std::shared_ptr<InputApplicationHandle> applicationHandle = in setFocusedApplication()
/aosp12/frameworks/base/boot/
H A Dpreloaded-classes7460 android.view.InputApplicationHandle

12