Home | History | Annotate | Download | only in shadows

Lines Matching defs:Looper

8 import android.os.Looper;
15 private Looper looper;
30 Looper.prepare();
32 looper = Looper.myLooper();
36 Looper.loop();
40 public Looper getLooper() {
45 // If the thread has been started, wait until the looper has been created.
47 while (thread.isAlive() && looper == null) {
54 return looper;
59 Looper looper = getLooper();
60 if (looper != null) {
61 looper.quit();