Home | History | Annotate | Download | only in util

Lines Matching defs:Looper

14 import android.os.Looper;
20 * Looper based executor class.
24 // Object used to signal that looper thread has started and Handler instance
25 // associated with looper thread has been allocated.
33 Looper.prepare();
35 Log.d(TAG, "Looper thread started.");
40 Looper.loop();
56 Log.e(TAG, "Can not start looper thread");
71 Looper.myLooper().quit();
72 Log.d(TAG, "Looper thread finished.");
77 // Checks if current thread is a looper thread.
85 Log.w(TAG, "Running looper executor without calling requestStart()");