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

/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,
/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/core/java/android/view/
H A DInputQueue.java34 public final class InputQueue { class
44 private static native int nativeInit(WeakReference<InputQueue> weakQueue,
51 public InputQueue() { method in class:InputQueue
52 mPtr = nativeInit(new WeakReference<InputQueue>(this), Looper.myQueue());
141 * Interface to receive notification of when an InputQueue is associated
146 * Called when the given InputQueue is now associated with the
149 void onInputQueueCreated(InputQueue queue);
152 * Called when the given InputQueue is no longer associated with
155 void onInputQueueDestroyed(InputQueue queue);

Completed in 849 milliseconds