Home | History | Annotate | Download | only in widget

Lines Matching defs:looper

41 import android.os.Looper;
261 Looper looper = Looper.myLooper();
262 mHandler = looper != null ? new Handler(looper) : null;
1483 if (Looper.getMainLooper().isCurrentThread()) {
1541 throw new IllegalStateException("Must construct LockPatternUtils on a looper thread"
1744 this(context, Looper.myLooper());
1748 * @param looper the looper on whose thread calls to {@link #onStrongAuthRequiredChanged}
1752 public StrongAuthTracker(Context context, Looper looper) {
1753 mHandler = new H(looper);
1822 public H(Looper looper) {
1823 super(looper);