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

  /frameworks/base/services/input/
InputWindow.cpp 47 // --- InputWindowHandle ---
49 InputWindowHandle::InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle) :
53 InputWindowHandle::~InputWindowHandle() {
57 void InputWindowHandle::releaseInfo() {
InputDispatcher.h 205 const sp<InputWindowHandle>& inputWindowHandle,
209 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) = 0;
243 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>& inputWindowHandle,
248 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle,
308 virtual void setInputWindows(const Vector<sp<InputWindowHandle> >& inputWindowHandles) = 0;
345 const sp<InputWindowHandle>& inputWindowHandle, bool monitor) = 0
    [all...]
InputWindow.h 160 class InputWindowHandle : public RefBase {
198 InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle);
199 virtual ~InputWindowHandle();
InputDispatcher.cpp 443 sp<InputWindowHandle> touchedWindowHandle = findTouchedWindowAtLocked(displayId, x, y);
468 sp<InputWindowHandle> InputDispatcher::findTouchedWindowAtLocked(int32_t displayId,
473 sp<InputWindowHandle> windowHandle = mWindowHandles.itemAt(i);
767 commandEntry->inputWindowHandle = mFocusedWindowHandle;
    [all...]
  /frameworks/base/services/jni/
com_android_server_input_InputWindowHandle.h 27 class NativeInputWindowHandle : public InputWindowHandle {
com_android_server_input_InputManagerService.cpp 125 const sp<InputWindowHandle>& inputWindowHandle) {
126 if (inputWindowHandle == NULL) {
129 return static_cast<NativeInputWindowHandle*>(inputWindowHandle.get())->
171 const sp<InputWindowHandle>& inputWindowHandle, bool monitor);
195 const sp<InputWindowHandle>& inputWindowHandle,
197 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle);
    [all...]
com_android_server_input_InputWindowHandle.cpp 17 #define LOG_TAG "InputWindowHandle"
66 InputWindowHandle(inputApplicationHandle),
227 int res = jniRegisterNativeMethods(env, "com/android/server/input/InputWindowHandle",
232 FIND_CLASS(clazz, "com/android/server/input/InputWindowHandle");
  /frameworks/base/services/java/com/android/server/input/
InputWindowHandle.java 27 public final class InputWindowHandle {
96 public InputWindowHandle(InputApplicationHandle inputApplicationHandle,
InputManagerService.java 167 InputWindowHandle inputWindowHandle, boolean monitor);
173 private static native void nativeSetInputWindows(int ptr, InputWindowHandle[] windowHandles);
439 * @param inputWindowHandle The handle of the input window associated with the
443 InputWindowHandle inputWindowHandle) {
448 nativeRegisterInputChannel(mPtr, inputChannel, inputWindowHandle, false);
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
FakeWindowImpl.java 20 import com.android.server.input.InputWindowHandle;
35 final InputWindowHandle mWindowHandle;
60 mWindowHandle = new InputWindowHandle(mApplicationHandle, null, Display.DEFAULT_DISPLAY);
InputMonitor.java 21 import com.android.server.input.InputWindowHandle;
53 private InputWindowHandle[] mInputWindowHandles;
70 public void notifyInputChannelBroken(InputWindowHandle inputWindowHandle) {
71 if (inputWindowHandle == null) {
76 WindowState windowState = (WindowState) inputWindowHandle.windowState;
91 InputWindowHandle inputWindowHandle, String reason) {
96 if (inputWindowHandle != null) {
97 windowState = (WindowState) inputWindowHandle.windowState
    [all...]
DragState.java 20 import com.android.server.input.InputWindowHandle;
60 InputWindowHandle mDragWindowHandle;
112 mDragWindowHandle = new InputWindowHandle(mDragApplicationHandle, null,
WindowState.java 36 import com.android.server.input.InputWindowHandle;
285 final InputWindowHandle mInputWindowHandle;
439 mInputWindowHandle = new InputWindowHandle(
    [all...]
  /frameworks/base/services/input/tests/
InputDispatcher_test.cpp 53 const sp<InputWindowHandle>& inputWindowHandle,
58 virtual void notifyInputChannelBroken(const sp<InputWindowHandle>& inputWindowHandle) {
79 virtual nsecs_t interceptKeyBeforeDispatching(const sp<InputWindowHandle>& inputWindowHandle,
84 virtual bool dispatchUnhandledKey(const sp<InputWindowHandle>& inputWindowHandle,

Completed in 563 milliseconds