Home | History | Annotate | Download | only in android

Lines Matching refs:looper

27 #include <utils/Looper.h>
67 Choreographer(const sp<Looper>& looper);
80 const sp<Looper> mLooper;
88 sp<Looper> looper = Looper::getForThread();
89 if (!looper.get()) {
90 ALOGW("No looper prepared for thread");
93 gChoreographer = new Choreographer(looper);
103 Choreographer::Choreographer(const sp<Looper>& looper) :
104 DisplayEventDispatcher(looper), mLooper(looper), mThreadId(std::this_thread::get_id()) {