Home | History | Annotate | Download | only in car

Lines Matching refs:looper

26 import android.os.Looper;
139 private final Looper mLooper;
188 * @param looper Looper to dispatch all listeners. If null, it will use main thread. Note that
189 * service connection listener will be always in main thread regardless of this Looper.
193 ServiceConnectionListener serviceConnectionListener, @Nullable Looper looper) {
195 return new Car(context, serviceConnectionListener, looper);
204 * Looper}.
206 * @see #createCar(Context, ServiceConnectionListener, Looper)
214 @Nullable Looper looper) {
217 if (looper == null) {
218 mLooper = Looper.getMainLooper();
220 mLooper = looper;
233 Context context, ServiceConnectionListener serviceConnectionListener, Looper looper)
245 ServiceConnectionListener.class, Looper.class);
252 serviceConnectionListener, looper);
265 * @param looper
269 public Car(Context context, CarServiceLoader serviceLoader, @Nullable Looper looper) {
271 if (looper == null) {
272 mLooper = Looper.getMainLooper();
274 mLooper = looper;
394 * <b>Note:</b> If this method is called from a thread besides the client's looper thread,