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

  /frameworks/native/services/inputflinger/
InputWindow.cpp 55 // --- InputWindowHandle ---
57 InputWindowHandle::InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle) :
61 InputWindowHandle::~InputWindowHandle() {
65 void InputWindowHandle::releaseInfo() {
InputDispatcher.h 205 const sp<InputWindowHandle>& inputWindowHandle,
209 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
    [all...]
InputWindow.h 158 class InputWindowHandle : public RefBase {
196 InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle);
197 virtual ~InputWindowHandle();
InputDispatcher.cpp 446 sp<InputWindowHandle> touchedWindowHandle = findTouchedWindowAtLocked(displayId, x, y);
471 sp<InputWindowHandle> InputDispatcher::findTouchedWindowAtLocked(int32_t displayId,
476 sp<InputWindowHandle> windowHandle = mWindowHandles.itemAt(i);
764 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 139 const sp<InputWindowHandle>& inputWindowHandle) {
140 if (inputWindowHandle == NULL) {
143 return static_cast<NativeInputWindowHandle*>(inputWindowHandle.get())->
183 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
213 const sp<InputWindowHandle>& inputWindowHandle,
215 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",
233 FIND_CLASS(clazz, "com/android/server/input/InputWindowHandle");
  /frameworks/base/services/core/java/com/android/server/input/
InputWindowHandle.java 27 public final class InputWindowHandle {
95 public InputWindowHandle(InputApplicationHandle inputApplicationHandle,
InputManagerService.java 174 InputWindowHandle inputWindowHandle, boolean monitor);
180 private static native void nativeSetInputWindows(long ptr, InputWindowHandle[] windowHandles);
461 * @param inputWindowHandle The handle of the input window associated with the
465 InputWindowHandle inputWindowHandle) {
470 nativeRegisterInputChannel(mPtr, inputChannel, inputWindowHandle, false);
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
FakeWindowImpl.java 20 import com.android.server.input.InputWindowHandle;
33 final InputWindowHandle mWindowHandle;
58 mWindowHandle = new InputWindowHandle(mApplicationHandle, null, Display.DEFAULT_DISPLAY);
InputMonitor.java 21 import com.android.server.input.InputWindowHandle;
53 private InputWindowHandle[] mInputWindowHandles;
72 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) {
73 if (inputWindowHandle == null) {
78 WindowState windowState = (WindowState) inputWindowHandle.windowState;
93 InputWindowHandle inputWindowHandle, String reason) {
98 if (inputWindowHandle != null) {
99 windowState = (WindowState) inputWindowHandle.windowState
    [all...]
DragState.java 20 import com.android.server.input.InputWindowHandle;
59 InputWindowHandle mDragWindowHandle;
111 mDragWindowHandle = new InputWindowHandle(mDragApplicationHandle, null,
WindowState.java 43 import com.android.server.input.InputWindowHandle;
326 final InputWindowHandle mInputWindowHandle;
485 mInputWindowHandle = new InputWindowHandle(
    [all...]
  /frameworks/native/services/inputflinger/tests/
InputDispatcher_test.cpp 56 const sp<InputWindowHandle>& inputWindowHandle,
61 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) {
78 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>& inputWindowHandle,
83 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle,

Completed in 483 milliseconds