Home
last modified time | relevance | path

Searched refs:inputWindowHandle (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/services/java/com/android/server/wm/
DInputMonitor.java68 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() argument
69 if (inputWindowHandle == null) { in notifyInputChannelBroken()
74 WindowState windowState = (WindowState) inputWindowHandle.windowState; in notifyInputChannelBroken()
88 InputWindowHandle inputWindowHandle) { in notifyANR() argument
92 if (inputWindowHandle != null) { in notifyANR()
93 windowState = (WindowState) inputWindowHandle.windowState; in notifyANR()
192 final InputWindowHandle inputWindowHandle = child.mInputWindowHandle; in updateInputWindowsLw() local
193 if (inputChannel == null || inputWindowHandle == null || child.mRemoved) { in updateInputWindowsLw()
213 inputWindowHandle.name = child.toString(); in updateInputWindowsLw()
214 inputWindowHandle.layoutParamsFlags = flags; in updateInputWindowsLw()
[all …]
/frameworks/base/services/input/tests/
DInputDispatcher_test.cpp53 const sp<InputWindowHandle>& inputWindowHandle) { in notifyANR() argument
57 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) { in notifyInputChannelBroken() argument
78 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>& inputWindowHandle, in interceptKeyBeforeDispatching() argument
83 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle, in dispatchUnhandledKey() argument
/frameworks/base/services/jni/
Dcom_android_server_input_InputManagerService.cpp124 const sp<InputWindowHandle>& inputWindowHandle) { in getInputWindowHandleObjLocalRef() argument
125 if (inputWindowHandle == NULL) { in getInputWindowHandleObjLocalRef()
128 return static_cast<NativeInputWindowHandle*>(inputWindowHandle.get())-> in getInputWindowHandleObjLocalRef()
172 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
196 const sp<InputWindowHandle>& inputWindowHandle);
197 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle);
204 const sp<InputWindowHandle>& inputWindowHandle,
206 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle,
380 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) { in registerInputChannel() argument
382 inputChannel, inputWindowHandle, monitor); in registerInputChannel()
[all …]
/frameworks/base/services/input/
DInputDispatcher.h203 const sp<InputWindowHandle>& inputWindowHandle) = 0;
206 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) = 0;
240 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>& inputWindowHandle,
245 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle,
342 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) = 0;
394 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
594 sp<InputWindowHandle> inputWindowHandle; member
797 sp<InputWindowHandle> inputWindowHandle; // may be null variable
814 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
DInputDispatcher.cpp735 commandEntry->inputWindowHandle = mFocusedWindowHandle; in dispatchKeyLocked()
985 sp<InputWindowHandle> windowHandle = connection->inputWindowHandle; in resumeAfterTargetsNotReadyTimeoutLocked()
1397 sp<InputWindowHandle> inputWindowHandle = touchedWindow.windowHandle; in findTouchedWindowTargetsLocked() local
1398 if (inputWindowHandle->getInfo()->ownerUid != foregroundWindowUid) { in findTouchedWindowTargetsLocked()
1399 mTempTouchState.addOrUpdateWindow(inputWindowHandle, in findTouchedWindowTargetsLocked()
3172 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) { in registerInputChannel() argument
3187 sp<Connection> connection = new Connection(inputChannel, inputWindowHandle, monitor); in registerInputChannel()
3321 commandEntry->inputWindowHandle = windowHandle; in onANRLocked()
3340 mPolicy->notifyInputChannelBroken(connection->inputWindowHandle); in doNotifyInputChannelBrokenLockedInterruptible()
3351 commandEntry->inputApplicationHandle, commandEntry->inputWindowHandle); in doNotifyANRLockedInterruptible()
[all …]
/frameworks/base/services/java/com/android/server/input/
DInputManagerService.java160 InputWindowHandle inputWindowHandle, boolean monitor); in nativeRegisterInputChannel() argument
397 InputWindowHandle inputWindowHandle) { in registerInputChannel() argument
402 nativeRegisterInputChannel(mPtr, inputChannel, inputWindowHandle, false); in registerInputChannel()
1218 private void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() argument
1219 mCallbacks.notifyInputChannelBroken(inputWindowHandle); in notifyInputChannelBroken()
1224 InputWindowHandle inputWindowHandle) { in notifyANR() argument
1225 return mCallbacks.notifyANR(inputApplicationHandle, inputWindowHandle); in notifyANR()
1403 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle); in notifyInputChannelBroken() argument
1406 InputWindowHandle inputWindowHandle); in notifyANR() argument