HomeSort by relevance Sort by last modified time
    Searched refs:InputWindowHandle (Results 1 - 15 of 15) sorted by null

  /frameworks/native/services/inputflinger/
InputWindow.cpp 63 // --- InputWindowHandle ---
65 InputWindowHandle::InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle) :
69 InputWindowHandle::~InputWindowHandle() {
73 void InputWindowHandle::releaseInfo() {
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
    [all...]
InputWindow.h 161 class InputWindowHandle : public RefBase {
199 InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle);
200 virtual ~InputWindowHandle();
InputDispatcher.cpp 451 sp<InputWindowHandle> touchedWindowHandle = findTouchedWindowAtLocked(displayId, x, y);
476 sp<InputWindowHandle> InputDispatcher::findTouchedWindowAtLocked(int32_t displayId,
481 sp<InputWindowHandle> windowHandle = mWindowHandles.itemAt(i);
771 commandEntry->inputWindowHandle = mFocusedWindowHandle;
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_input_InputWindowHandle.h 27 class NativeInputWindowHandle : public InputWindowHandle {
com_android_server_input_InputManagerService.cpp 147 const sp<InputWindowHandle>& inputWindowHandle) {
148 if (inputWindowHandle == NULL) {
151 return static_cast<NativeInputWindowHandle*>(inputWindowHandle.get())->
196 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
229 const sp<InputWindowHandle>& inputWindowHandle,
231 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle);
    [all...]
com_android_server_input_InputWindowHandle.cpp 17 #define LOG_TAG "InputWindowHandle"
66 InputWindowHandle(inputApplicationHandle),
228 int res = jniRegisterNativeMethods(env, "com/android/server/input/InputWindowHandle",
234 FIND_CLASS(clazz, "com/android/server/input/InputWindowHandle");
  /frameworks/base/services/core/java/com/android/server/wm/
InputConsumerImpl.java 24 import com.android.server.input.InputWindowHandle;
30 final InputWindowHandle mWindowHandle;
51 mWindowHandle = new InputWindowHandle(mApplicationHandle, null, Display.DEFAULT_DISPLAY);
InputMonitor.java 38 import com.android.server.input.InputWindowHandle;
64 private InputWindowHandle[] mInputWindowHandles;
81 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) {
82 if (inputWindowHandle == null) {
87 WindowState windowState = (WindowState) inputWindowHandle.windowState;
102 InputWindowHandle inputWindowHandle, String reason) {
107 if (inputWindowHandle != null) {
108 windowState = (WindowState) inputWindowHandle.windowState
    [all...]
TaskPositioner.java 57 import com.android.server.input.InputWindowHandle;
117 InputWindowHandle mDragWindowHandle;
256 mDragWindowHandle = new InputWindowHandle(mDragApplicationHandle, null,
DragState.java 59 import com.android.server.input.InputWindowHandle;
100 InputWindowHandle mDragWindowHandle;
155 mDragWindowHandle = new InputWindowHandle(mDragApplicationHandle, null,
WindowState.java 54 import com.android.server.input.InputWindowHandle;
427 final InputWindowHandle mInputWindowHandle;
656 mInputWindowHandle = new InputWindowHandle(
    [all...]
  /frameworks/base/services/core/java/com/android/server/input/
InputWindowHandle.java 27 public final class InputWindowHandle {
95 public InputWindowHandle(InputApplicationHandle inputApplicationHandle,
InputManagerService.java 205 InputWindowHandle inputWindowHandle, boolean monitor);
212 private static native void nativeSetInputWindows(long ptr, InputWindowHandle[] windowHandles);
510 * @param inputWindowHandle The handle of the input window associated with the
514 InputWindowHandle inputWindowHandle) {
519 nativeRegisterInputChannel(mPtr, inputChannel, inputWindowHandle, false);
    [all...]
  /frameworks/native/services/inputflinger/tests/
InputDispatcher_test.cpp 56 const sp<InputWindowHandle>&,
61 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>&) {
78 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>&,
83 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>&,

Completed in 858 milliseconds