Home
last modified time | relevance | path

Searched refs:InputWindowHandle (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/services/input/
DInputWindow.cpp49 InputWindowHandle::InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle) : in InputWindowHandle() function in android::InputWindowHandle
53 InputWindowHandle::~InputWindowHandle() { in ~InputWindowHandle()
57 void InputWindowHandle::releaseInfo() { in releaseInfo()
DInputDispatcher.h203 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 …]
DInputWindow.h156 class InputWindowHandle : public RefBase {
194 InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle);
195 virtual ~InputWindowHandle();
DInputDispatcher.cpp430 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/
DInputMonitor.java21 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()
DFakeWindowImpl.java20 import com.android.server.input.InputWindowHandle;
34 final InputWindowHandle mWindowHandle;
59 mWindowHandle = new InputWindowHandle(mApplicationHandle, null); in FakeWindowImpl()
DDragState.java20 import com.android.server.input.InputWindowHandle;
57 InputWindowHandle mDragWindowHandle;
104 mDragWindowHandle = new InputWindowHandle(mDragApplicationHandle, null); in register()
DWindowState.java26 import com.android.server.input.InputWindowHandle;
242 final InputWindowHandle mInputWindowHandle;
345 mInputWindowHandle = new InputWindowHandle( in WindowState()
/frameworks/base/services/java/com/android/server/input/
DInputWindowHandle.java27 public final class InputWindowHandle { class
92 public InputWindowHandle(InputApplicationHandle inputApplicationHandle, in InputWindowHandle() method in InputWindowHandle
DInputManagerService.java160 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/
DInputDispatcher_test.cpp53 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/
Dcom_android_server_input_InputManagerService.cpp124 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 …]
Dcom_android_server_input_InputWindowHandle.h27 class NativeInputWindowHandle : public InputWindowHandle {
Dcom_android_server_input_InputWindowHandle.cpp64 InputWindowHandle(inputApplicationHandle), in NativeInputWindowHandle()