Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DInputMonitor.java199 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() argument
200 if (inputWindowHandle == null) { in notifyInputChannelBroken()
205 WindowState windowState = (WindowState) inputWindowHandle.windowState; in notifyInputChannelBroken()
220 InputWindowHandle inputWindowHandle, String reason) { in notifyANR() argument
225 if (inputWindowHandle != null) { in notifyANR()
226 windowState = (WindowState) inputWindowHandle.windowState; in notifyANR()
300 void addInputWindowHandle(final InputWindowHandle inputWindowHandle, in addInputWindowHandle() argument
304 inputWindowHandle.name = child.toString(); in addInputWindowHandle()
305 flags = child.getTouchableRegion(inputWindowHandle.touchableRegion, flags); in addInputWindowHandle()
306 inputWindowHandle.layoutParamsFlags = flags; in addInputWindowHandle()
[all …]
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp148 const sp<InputWindowHandle>& inputWindowHandle) { in getInputWindowHandleObjLocalRef() argument
149 if (inputWindowHandle == NULL) { in getInputWindowHandleObjLocalRef()
152 return static_cast<NativeInputWindowHandle*>(inputWindowHandle.get())-> in getInputWindowHandleObjLocalRef()
198 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
232 const sp<InputWindowHandle>& inputWindowHandle,
234 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle);
240 const sp<InputWindowHandle>& inputWindowHandle,
242 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle,
437 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) { in registerInputChannel() argument
439 inputChannel, inputWindowHandle, monitor); in registerInputChannel()
[all …]
/frameworks/native/services/inputflinger/
DInputDispatcher.h211 const sp<InputWindowHandle>& inputWindowHandle,
215 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) = 0;
246 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>& inputWindowHandle,
251 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle,
348 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) = 0;
400 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
604 sp<InputWindowHandle> inputWindowHandle; member
816 sp<InputWindowHandle> inputWindowHandle; // may be null variable
833 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
DInputDispatcher.cpp771 commandEntry->inputWindowHandle = mFocusedWindowHandle; in dispatchKeyLocked()
1031 sp<InputWindowHandle> windowHandle = connection->inputWindowHandle; in resumeAfterTargetsNotReadyTimeoutLocked()
1405 sp<InputWindowHandle> inputWindowHandle = touchedWindow.windowHandle; in findTouchedWindowTargetsLocked() local
1406 if (inputWindowHandle->getInfo()->ownerUid != foregroundWindowUid) { in findTouchedWindowTargetsLocked()
1407 mTempTouchState.addOrUpdateWindow(inputWindowHandle, in findTouchedWindowTargetsLocked()
3344 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) { in registerInputChannel() argument
3359 sp<Connection> connection = new Connection(inputChannel, inputWindowHandle, monitor); in registerInputChannel()
3492 commandEntry->inputWindowHandle = windowHandle; in onANRLocked()
3512 mPolicy->notifyInputChannelBroken(connection->inputWindowHandle); in doNotifyInputChannelBrokenLockedInterruptible()
3523 commandEntry->inputApplicationHandle, commandEntry->inputWindowHandle, in doNotifyANRLockedInterruptible()
[all …]
/frameworks/base/services/core/java/com/android/server/input/
DInputManagerService.java210 InputWindowHandle inputWindowHandle, boolean monitor); in nativeRegisterInputChannel() argument
529 InputWindowHandle inputWindowHandle) { in registerInputChannel() argument
534 nativeRegisterInputChannel(mPtr, inputChannel, inputWindowHandle, false); in registerInputChannel()
1887 private void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() argument
1888 mWindowManagerCallbacks.notifyInputChannelBroken(inputWindowHandle); in notifyInputChannelBroken()
1893 InputWindowHandle inputWindowHandle, String reason) { in notifyANR() argument
1895 inputApplicationHandle, inputWindowHandle, reason); in notifyANR()
2077 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle); in notifyInputChannelBroken() argument
2080 InputWindowHandle inputWindowHandle, String reason); in notifyANR() argument