Searched refs:inputWindowHandle (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/services/java/com/android/server/wm/ |
D | InputMonitor.java | 68 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/ |
D | InputDispatcher_test.cpp | 53 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/ |
D | com_android_server_input_InputManagerService.cpp | 124 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/ |
D | InputDispatcher.h | 203 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);
|
D | InputDispatcher.cpp | 735 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/ |
D | InputManagerService.java | 160 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
|