/frameworks/base/services/input/ |
D | InputWindow.cpp | 49 InputWindowHandle::InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle) : in InputWindowHandle() function in android::InputWindowHandle 53 InputWindowHandle::~InputWindowHandle() { in ~InputWindowHandle() 57 void InputWindowHandle::releaseInfo() { in releaseInfo()
|
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, 305 virtual void setInputWindows(const Vector<sp<InputWindowHandle> >& inputWindowHandles) = 0; 342 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) = 0; 385 virtual void setInputWindows(const Vector<sp<InputWindowHandle> >& inputWindowHandles); 394 const sp<InputWindowHandle>& inputWindowHandle, bool monitor); 594 sp<InputWindowHandle> inputWindowHandle; 797 sp<InputWindowHandle> inputWindowHandle; // may be null [all …]
|
D | InputWindow.h | 156 class InputWindowHandle : public RefBase { 194 InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle); 195 virtual ~InputWindowHandle();
|
D | InputDispatcher.cpp | 430 sp<InputWindowHandle> touchedWindowHandle = findTouchedWindowAtLocked(x, y); in enqueueInboundEventLocked() 447 sp<InputWindowHandle> InputDispatcher::findTouchedWindowAtLocked(int32_t x, int32_t y) { in findTouchedWindowAtLocked() 451 sp<InputWindowHandle> windowHandle = mWindowHandles.itemAt(i); in findTouchedWindowAtLocked() 905 const sp<InputWindowHandle>& windowHandle, in handleTargetsNotReadyLocked() 985 sp<InputWindowHandle> windowHandle = connection->inputWindowHandle; in resumeAfterTargetsNotReadyTimeoutLocked() 1126 sp<InputWindowHandle> newHoverWindowHandle; in findTouchedWindowTargetsLocked() 1168 sp<InputWindowHandle> newTouchedWindowHandle; in findTouchedWindowTargetsLocked() 1169 sp<InputWindowHandle> topErrorWindowHandle; in findTouchedWindowTargetsLocked() 1175 sp<InputWindowHandle> windowHandle = mWindowHandles.itemAt(i); in findTouchedWindowTargetsLocked() 1301 sp<InputWindowHandle> oldTouchedWindowHandle = in findTouchedWindowTargetsLocked() [all …]
|
/frameworks/base/services/java/com/android/server/wm/ |
D | InputMonitor.java | 21 import com.android.server.input.InputWindowHandle; 52 private InputWindowHandle[] mInputWindowHandles; 68 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() 88 InputWindowHandle inputWindowHandle) { in notifyANR() 131 private void addInputWindowHandleLw(InputWindowHandle windowHandle) { in addInputWindowHandleLw() 133 mInputWindowHandles = new InputWindowHandle[16]; in addInputWindowHandleLw() 174 final InputWindowHandle dragWindowHandle = mService.mDragState.mDragWindowHandle; in updateInputWindowsLw() 192 final InputWindowHandle inputWindowHandle = child.mInputWindowHandle; in updateInputWindowsLw() 303 InputWindowHandle focus, KeyEvent event, int policyFlags) { in interceptKeyBeforeDispatching() 311 InputWindowHandle focus, KeyEvent event, int policyFlags) { in dispatchUnhandledKey()
|
D | FakeWindowImpl.java | 20 import com.android.server.input.InputWindowHandle; 34 final InputWindowHandle mWindowHandle; 59 mWindowHandle = new InputWindowHandle(mApplicationHandle, null); in FakeWindowImpl()
|
D | DragState.java | 20 import com.android.server.input.InputWindowHandle; 57 InputWindowHandle mDragWindowHandle; 104 mDragWindowHandle = new InputWindowHandle(mDragApplicationHandle, null); in register()
|
D | WindowState.java | 26 import com.android.server.input.InputWindowHandle; 242 final InputWindowHandle mInputWindowHandle; 345 mInputWindowHandle = new InputWindowHandle( in WindowState()
|
/frameworks/base/services/java/com/android/server/input/ |
D | InputWindowHandle.java | 27 public final class InputWindowHandle { class 92 public InputWindowHandle(InputApplicationHandle inputApplicationHandle, in InputWindowHandle() method in InputWindowHandle
|
D | InputManagerService.java | 160 InputWindowHandle inputWindowHandle, boolean monitor); in nativeRegisterInputChannel() 166 private static native void nativeSetInputWindows(int ptr, InputWindowHandle[] windowHandles); in nativeSetInputWindows() 397 InputWindowHandle inputWindowHandle) { in registerInputChannel() 984 public void setInputWindows(InputWindowHandle[] windowHandles) { in setInputWindows() 1218 private void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) { in notifyInputChannelBroken() 1224 InputWindowHandle inputWindowHandle) { in notifyANR() 1252 private long interceptKeyBeforeDispatching(InputWindowHandle focus, in interceptKeyBeforeDispatching() 1258 private KeyEvent dispatchUnhandledKey(InputWindowHandle focus, in dispatchUnhandledKey() 1403 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle); in notifyInputChannelBroken() 1406 InputWindowHandle inputWindowHandle); in notifyANR() [all …]
|
/frameworks/base/services/input/tests/ |
D | InputDispatcher_test.cpp | 53 const sp<InputWindowHandle>& inputWindowHandle) { in notifyANR() 57 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) { in notifyInputChannelBroken() 78 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>& inputWindowHandle, in interceptKeyBeforeDispatching() 83 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle, in dispatchUnhandledKey()
|
/frameworks/base/services/jni/ |
D | com_android_server_input_InputManagerService.cpp | 124 const sp<InputWindowHandle>& inputWindowHandle) { 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() 603 const sp<InputWindowHandle>& inputWindowHandle) { in notifyANR() 628 void NativeInputManager::notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) { in notifyInputChannelBroken() 668 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 | 64 InputWindowHandle(inputApplicationHandle), in NativeInputWindowHandle()
|