Searched defs:InputQueue (Results 1 - 3 of 3) sorted by path

/frameworks/base/core/java/android/view/
H A DInputQueue.java33 public final class InputQueue { class
43 private static native long nativeInit(WeakReference<InputQueue> weakQueue,
50 public InputQueue() { method in class:InputQueue
51 mPtr = nativeInit(new WeakReference<InputQueue>(this), Looper.myQueue());
140 * Interface to receive notification of when an InputQueue is associated
145 * Called when the given InputQueue is now associated with the
148 void onInputQueueCreated(InputQueue queue);
151 * Called when the given InputQueue is no longer associated with
154 void onInputQueueDestroyed(InputQueue queue);
/frameworks/base/core/jni/
H A Dandroid_view_InputQueue.cpp17 #define LOG_TAG "InputQueue"
46 InputQueue::InputQueue(jobject inputQueueObj, const sp<Looper>& looper, function in class:android::InputQueue
54 InputQueue::~InputQueue() {
62 void InputQueue::attachLooper(Looper* looper, int ident,
74 void InputQueue::detachLooper() {
79 void InputQueue::detachLooperLocked() {
86 bool InputQueue::hasEvents() {
91 status_t InputQueue
[all...]
/frameworks/base/include/android_runtime/
H A Dandroid_view_InputQueue.h35 class InputQueue : public AInputQueue, public MessageHandler { class in namespace:android
37 virtual ~InputQueue();
59 static InputQueue* createQueue(jobject inputQueueObj, const sp<Looper>& looper);
65 InputQueue(jobject inputQueueObj, const sp<Looper>& looper,

Completed in 67 milliseconds