Searched refs:inputWindowHandle (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | InputMonitor.java | 208 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() argument 209 if (inputWindowHandle == null) { in notifyInputChannelBroken() 214 WindowState windowState = (WindowState) inputWindowHandle.windowState; in notifyInputChannelBroken() 229 InputWindowHandle inputWindowHandle, String reason) { in notifyANR() argument 234 if (inputWindowHandle != null) { in notifyANR() 235 windowState = (WindowState) inputWindowHandle.windowState; in notifyANR() 309 void addInputWindowHandle(final InputWindowHandle inputWindowHandle, in addInputWindowHandle() argument 313 inputWindowHandle.name = child.toString(); in addInputWindowHandle() 314 flags = child.getTouchableRegion(inputWindowHandle.touchableRegion, flags); in addInputWindowHandle() 315 inputWindowHandle.layoutParamsFlags = flags; in addInputWindowHandle() [all …]
|
/frameworks/base/services/core/jni/ |
D | com_android_server_input_InputManagerService.cpp | 155 const sp<InputWindowHandle>& inputWindowHandle) { in getInputWindowHandleObjLocalRef() argument 156 if (inputWindowHandle == NULL) { in getInputWindowHandleObjLocalRef() 159 return static_cast<NativeInputWindowHandle*>(inputWindowHandle.get())-> in getInputWindowHandleObjLocalRef() 210 const sp<InputWindowHandle>& inputWindowHandle, bool monitor); 245 const sp<InputWindowHandle>& inputWindowHandle, 247 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle); 253 const sp<InputWindowHandle>& inputWindowHandle, 255 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle, 453 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) { in registerInputChannel() argument 456 inputChannel, inputWindowHandle, monitor); in registerInputChannel() [all …]
|
/frameworks/native/services/inputflinger/ |
D | InputDispatcher.h | 210 const sp<InputWindowHandle>& inputWindowHandle, 214 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) = 0; 245 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>& inputWindowHandle, 250 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle, 347 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) = 0; 399 const sp<InputWindowHandle>& inputWindowHandle, bool monitor); 603 sp<InputWindowHandle> inputWindowHandle; member 815 sp<InputWindowHandle> inputWindowHandle; // may be null variable 832 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
|
D | InputDispatcher.cpp | 811 commandEntry->inputWindowHandle = mFocusedWindowHandle; in dispatchKeyLocked() 1068 sp<InputWindowHandle> windowHandle = connection->inputWindowHandle; in resumeAfterTargetsNotReadyTimeoutLocked() 1440 sp<InputWindowHandle> inputWindowHandle = touchedWindow.windowHandle; in findTouchedWindowTargetsLocked() local 1441 if (inputWindowHandle->getInfo()->ownerUid != foregroundWindowUid) { in findTouchedWindowTargetsLocked() 1442 mTempTouchState.addOrUpdateWindow(inputWindowHandle, in findTouchedWindowTargetsLocked() 3401 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) { in registerInputChannel() argument 3416 sp<Connection> connection = new Connection(inputChannel, inputWindowHandle, monitor); in registerInputChannel() 3549 commandEntry->inputWindowHandle = windowHandle; in onANRLocked() 3569 mPolicy->notifyInputChannelBroken(connection->inputWindowHandle); in doNotifyInputChannelBrokenLockedInterruptible() 3580 commandEntry->inputApplicationHandle, commandEntry->inputWindowHandle, in doNotifyANRLockedInterruptible() [all …]
|
/frameworks/base/services/core/java/com/android/server/input/ |
D | InputManagerService.java | 208 InputWindowHandle inputWindowHandle, boolean monitor); in nativeRegisterInputChannel() argument 530 InputWindowHandle inputWindowHandle) { in registerInputChannel() argument 535 nativeRegisterInputChannel(mPtr, inputChannel, inputWindowHandle, false); in registerInputChannel() 1813 private void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() argument 1814 mWindowManagerCallbacks.notifyInputChannelBroken(inputWindowHandle); in notifyInputChannelBroken() 1819 InputWindowHandle inputWindowHandle, String reason) { in notifyANR() argument 1821 inputApplicationHandle, inputWindowHandle, reason); in notifyANR() 2003 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle); in notifyInputChannelBroken() argument 2006 InputWindowHandle inputWindowHandle, String reason); in notifyANR() argument
|