Home | History | Annotate | Download | only in unit

Lines Matching defs:Looper

20 import android.os.Looper;
51 private Looper mLooper = null;
92 terminateMessageLooper(); // Release message looper thread.
100 * Initializes the message looper so that the MediaPlayer object can
107 // Set up a looper to be used by mMediaPlayer.
108 Looper.prepare();
110 // Save the looper so that we can terminate this thread
112 mLooper = Looper.myLooper();
144 Looper.loop(); // Blocks forever until Looper.quit() is called.
489 * Terminates the message looper thread.