/frameworks/native/services/inputflinger/ |
D | InputWindow.cpp | 65 InputWindowHandle::InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle) : in InputWindowHandle() function in android::InputWindowHandle 69 InputWindowHandle::~InputWindowHandle() { in ~InputWindowHandle() 73 void InputWindowHandle::releaseInfo() { in releaseInfo()
|
D | InputDispatcher.h | 211 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, 311 virtual void setInputWindows(const Vector<sp<InputWindowHandle> >& inputWindowHandles) = 0; 348 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) = 0; 391 virtual void setInputWindows(const Vector<sp<InputWindowHandle> >& inputWindowHandles); 400 const sp<InputWindowHandle>& inputWindowHandle, bool monitor); 604 sp<InputWindowHandle> inputWindowHandle; 816 sp<InputWindowHandle> inputWindowHandle; // may be null [all …]
|
D | InputWindow.h | 161 class InputWindowHandle : public RefBase { 199 InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle); 200 virtual ~InputWindowHandle();
|
D | InputDispatcher.cpp | 451 sp<InputWindowHandle> touchedWindowHandle = findTouchedWindowAtLocked(displayId, x, y); in enqueueInboundEventLocked() 476 sp<InputWindowHandle> InputDispatcher::findTouchedWindowAtLocked(int32_t displayId, in findTouchedWindowAtLocked() 481 sp<InputWindowHandle> windowHandle = mWindowHandles.itemAt(i); in findTouchedWindowAtLocked() 953 const sp<InputWindowHandle>& windowHandle, in handleTargetsNotReadyLocked() 1033 sp<InputWindowHandle> windowHandle = connection->inputWindowHandle; in resumeAfterTargetsNotReadyTimeoutLocked() 1151 sp<InputWindowHandle> newHoverWindowHandle; in findTouchedWindowTargetsLocked() 1202 sp<InputWindowHandle> newTouchedWindowHandle; in findTouchedWindowTargetsLocked() 1208 sp<InputWindowHandle> windowHandle = mWindowHandles.itemAt(i); in findTouchedWindowTargetsLocked() 1307 sp<InputWindowHandle> oldTouchedWindowHandle = in findTouchedWindowTargetsLocked() 1309 sp<InputWindowHandle> newTouchedWindowHandle = in findTouchedWindowTargetsLocked() [all …]
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | InputMonitor.java | 38 import com.android.server.input.InputWindowHandle; 64 private InputWindowHandle[] mInputWindowHandles; 81 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() 102 InputWindowHandle inputWindowHandle, String reason) { in notifyANR() 168 private void addInputWindowHandleLw(final InputWindowHandle windowHandle) { in addInputWindowHandleLw() 170 mInputWindowHandles = new InputWindowHandle[16]; in addInputWindowHandleLw() 179 private void addInputWindowHandleLw(final InputWindowHandle inputWindowHandle, in addInputWindowHandleLw() 260 final InputWindowHandle dragWindowHandle = mService.mDragState.mDragWindowHandle; in updateInputWindowsLw() 274 final InputWindowHandle dragWindowHandle = mService.mTaskPositioner.mDragWindowHandle; in updateInputWindowsLw() 296 final InputWindowHandle inputWindowHandle = child.mInputWindowHandle; in updateInputWindowsLw() [all …]
|
D | InputConsumerImpl.java | 24 import com.android.server.input.InputWindowHandle; 30 final InputWindowHandle mWindowHandle; 51 mWindowHandle = new InputWindowHandle(mApplicationHandle, null, Display.DEFAULT_DISPLAY); in InputConsumerImpl()
|
D | TaskPositioner.java | 57 import com.android.server.input.InputWindowHandle; 117 InputWindowHandle mDragWindowHandle; 256 mDragWindowHandle = new InputWindowHandle(mDragApplicationHandle, null, in register()
|
D | DragState.java | 59 import com.android.server.input.InputWindowHandle; 100 InputWindowHandle mDragWindowHandle; 155 mDragWindowHandle = new InputWindowHandle(mDragApplicationHandle, null, in register()
|
D | WindowState.java | 54 import com.android.server.input.InputWindowHandle; 427 final InputWindowHandle mInputWindowHandle; 656 mInputWindowHandle = new InputWindowHandle( in WindowState()
|
/frameworks/native/services/inputflinger/tests/ |
D | InputDispatcher_test.cpp | 56 const sp<InputWindowHandle>&, in notifyANR() argument 61 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>&) { in notifyInputChannelBroken() argument 78 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>&, in interceptKeyBeforeDispatching() argument 83 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>&, in dispatchUnhandledKey() argument
|
/frameworks/base/services/core/java/com/android/server/input/ |
D | InputWindowHandle.java | 27 public final class InputWindowHandle { class 95 public InputWindowHandle(InputApplicationHandle inputApplicationHandle, in InputWindowHandle() method in InputWindowHandle
|
D | InputManagerService.java | 205 InputWindowHandle inputWindowHandle, boolean monitor); in nativeRegisterInputChannel() 212 private static native void nativeSetInputWindows(long ptr, InputWindowHandle[] windowHandles); in nativeSetInputWindows() 514 InputWindowHandle inputWindowHandle) { in registerInputChannel() 1510 public void setInputWindows(InputWindowHandle[] windowHandles) { in setInputWindows() 1843 private void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() 1849 InputWindowHandle inputWindowHandle, String reason) { in notifyANR() 1882 private long interceptKeyBeforeDispatching(InputWindowHandle focus, in interceptKeyBeforeDispatching() 1888 private KeyEvent dispatchUnhandledKey(InputWindowHandle focus, in dispatchUnhandledKey() 2033 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle); in notifyInputChannelBroken() 2036 InputWindowHandle inputWindowHandle, String reason); in notifyANR() [all …]
|
/frameworks/base/services/core/jni/ |
D | com_android_server_input_InputManagerService.cpp | 147 const sp<InputWindowHandle>& inputWindowHandle) { in getInputWindowHandleObjLocalRef() 196 const sp<InputWindowHandle>& inputWindowHandle, bool monitor); 229 const sp<InputWindowHandle>& inputWindowHandle, 231 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle); 237 const sp<InputWindowHandle>& inputWindowHandle, 239 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle, 392 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) { in registerInputChannel() 597 const sp<InputWindowHandle>& inputWindowHandle, const String8& reason) { in notifyANR() 625 void NativeInputManager::notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) { in notifyInputChannelBroken() 660 Vector<sp<InputWindowHandle> > windowHandles; in setInputWindows() [all …]
|
D | com_android_server_input_InputWindowHandle.h | 27 class NativeInputWindowHandle : public InputWindowHandle {
|
D | com_android_server_input_InputWindowHandle.cpp | 66 InputWindowHandle(inputApplicationHandle), in NativeInputWindowHandle()
|