Searched refs:inputWindowHandle (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/services/java/com/android/server/wm/ |
D | InputMonitor.java | 70 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() argument 71 if (inputWindowHandle == null) { in notifyInputChannelBroken() 76 WindowState windowState = (WindowState) inputWindowHandle.windowState; in notifyInputChannelBroken() 91 InputWindowHandle inputWindowHandle, String reason) { in notifyANR() argument 96 if (inputWindowHandle != null) { in notifyANR() 97 windowState = (WindowState) inputWindowHandle.windowState; in notifyANR() 168 private void addInputWindowHandleLw(final InputWindowHandle inputWindowHandle, in addInputWindowHandleLw() argument 172 inputWindowHandle.name = child.toString(); in addInputWindowHandleLw() 178 inputWindowHandle.touchableRegion.set(child.getStackBounds()); in addInputWindowHandleLw() 181 child.getTouchableRegion(inputWindowHandle.touchableRegion); in addInputWindowHandleLw() [all …]
|
/frameworks/base/services/input/tests/ |
D | InputDispatcher_test.cpp | 53 const sp<InputWindowHandle>& inputWindowHandle, in notifyANR() argument 58 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) { in notifyInputChannelBroken() argument 79 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>& inputWindowHandle, in interceptKeyBeforeDispatching() argument 84 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle, in dispatchUnhandledKey() argument
|
/frameworks/base/services/jni/ |
D | com_android_server_input_InputManagerService.cpp | 125 const sp<InputWindowHandle>& inputWindowHandle) { in getInputWindowHandleObjLocalRef() argument 126 if (inputWindowHandle == NULL) { in getInputWindowHandleObjLocalRef() 129 return static_cast<NativeInputWindowHandle*>(inputWindowHandle.get())-> in getInputWindowHandleObjLocalRef() 171 const sp<InputWindowHandle>& inputWindowHandle, bool monitor); 195 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, 340 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) { in registerInputChannel() argument 342 inputChannel, inputWindowHandle, monitor); in registerInputChannel() [all …]
|
/frameworks/base/services/input/ |
D | InputDispatcher.h | 205 const sp<InputWindowHandle>& inputWindowHandle, 209 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) = 0; 243 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>& inputWindowHandle, 248 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle, 345 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) = 0; 397 const sp<InputWindowHandle>& inputWindowHandle, bool monitor); 599 sp<InputWindowHandle> inputWindowHandle; member 804 sp<InputWindowHandle> inputWindowHandle; // may be null variable 821 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
|
D | InputDispatcher.cpp | 767 commandEntry->inputWindowHandle = mFocusedWindowHandle; in dispatchKeyLocked() 1020 sp<InputWindowHandle> windowHandle = connection->inputWindowHandle; in resumeAfterTargetsNotReadyTimeoutLocked() 1426 sp<InputWindowHandle> inputWindowHandle = touchedWindow.windowHandle; in findTouchedWindowTargetsLocked() local 1427 if (inputWindowHandle->getInfo()->ownerUid != foregroundWindowUid) { in findTouchedWindowTargetsLocked() 1428 mTempTouchState.addOrUpdateWindow(inputWindowHandle, in findTouchedWindowTargetsLocked() 3261 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) { in registerInputChannel() argument 3276 sp<Connection> connection = new Connection(inputChannel, inputWindowHandle, monitor); in registerInputChannel() 3409 commandEntry->inputWindowHandle = windowHandle; in onANRLocked() 3429 mPolicy->notifyInputChannelBroken(connection->inputWindowHandle); in doNotifyInputChannelBrokenLockedInterruptible() 3440 commandEntry->inputApplicationHandle, commandEntry->inputWindowHandle, in doNotifyANRLockedInterruptible() [all …]
|
/frameworks/base/services/java/com/android/server/input/ |
D | InputManagerService.java | 167 InputWindowHandle inputWindowHandle, boolean monitor); in nativeRegisterInputChannel() argument 443 InputWindowHandle inputWindowHandle) { in registerInputChannel() argument 448 nativeRegisterInputChannel(mPtr, inputChannel, inputWindowHandle, false); in registerInputChannel() 1290 private void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() argument 1291 mWindowManagerCallbacks.notifyInputChannelBroken(inputWindowHandle); in notifyInputChannelBroken() 1296 InputWindowHandle inputWindowHandle, String reason) { in notifyANR() argument 1298 inputApplicationHandle, inputWindowHandle, reason); in notifyANR() 1479 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle); in notifyInputChannelBroken() argument 1482 InputWindowHandle inputWindowHandle, String reason); in notifyANR() argument
|