Home | History | Annotate | Download | only in jni

Lines Matching refs:looper

27 #include <utils/Looper.h>
48 InputQueue::InputQueue(jobject inputQueueObj, const sp<Looper>& looper,
51 mDispatchLooper(looper), mHandler(new WeakMessageHandler(this)) {
64 void InputQueue::attachLooper(Looper* looper, int ident,
68 if (looper == mAppLoopers[i]) {
72 mAppLoopers.push(looper);
73 looper->addFd(mDispatchReadFd, ident, ALOOPER_EVENT_INPUT, callback, data);
187 InputQueue* InputQueue::createQueue(jobject inputQueueObj, const sp<Looper>& looper) {
195 return new InputQueue(inputQueueObj, looper, pipeFds[0], pipeFds[1]);