Home | History | Annotate | Download | only in functional

Lines Matching defs:Looper

29 import android.os.Looper;
63 private Looper mLooper = null;
79 * Initializes the message looper so that the Camera object can
84 Log.v(TAG, "start looper");
88 // Set up a looper to be used by camera.
89 Looper.prepare();
91 // Save the looper so that we can terminate this thread
93 mLooper = Looper.myLooper();
96 Looper.loop(); // Blocks forever until Looper.quit() is called.
107 * Terminates the message looper thread.
111 // Looper.quit() is asynchronous. The looper may still has some
115 // the method. So we need to join the looper thread here.