Home | History | Annotate | Download | only in util

Lines Matching defs:looper

21 import android.os.Looper;
923 * Cleanup all the static variables and the looper after the SM has been quit.
927 // If we made the thread then quit looper which stops the thread.
1217 * @param looper for dispatching messages
1220 private SmHandler(Looper looper, StateMachine sm) {
1221 super(looper);
1290 * @param looper for this state machine
1293 private void initStateMachine(String name, Looper looper) {
1295 mSmHandler = new SmHandler(looper, this);
1306 Looper looper = mSmThread.getLooper();
1308 initStateMachine(name, looper);
1312 * Constructor creates a StateMachine using the looper.
1316 protected StateMachine(String name, Looper looper) {
1317 initStateMachine(name, looper);