HomeSort by relevance Sort by last modified time
    Searched refs:CarServiceLoader (Results 1 - 3 of 3) sorted by null

  /packages/services/Car/car-support-lib/src/android/support/car/
CarServiceLoader.java 23 * CarServiceLoader is the abstraction for loading different types of car service.
26 public abstract class CarServiceLoader {
32 public CarServiceLoader(Context context, CarConnectionCallbackProxy callback, Handler handler) {
Car.java 204 * {@link CarServiceLoader} implementation for projected mode. Available only when the
224 private final CarServiceLoader.CarConnectionCallbackProxy mCarConnectionCallbackProxy =
225 new CarServiceLoader.CarConnectionCallbackProxy() {
250 private final CarServiceLoader mCarServiceLoader;
305 private CarServiceLoader loadCarServiceLoader(String carServiceLoaderClassName, Context context,
306 CarServiceLoader.CarConnectionCallbackProxy carConnectionCallbackProxy,
308 Class<? extends CarServiceLoader> carServiceLoaderClass = null;
311 Class.forName(carServiceLoaderClassName).asSubclass(CarServiceLoader.class);
314 "Cannot find CarServiceLoader implementation:" + carServiceLoaderClassName, e);
316 Constructor<? extends CarServiceLoader> ctor
    [all...]
CarServiceLoaderEmbedded.java 30 * Default CarServiceLoader for system with built-in car service (=embedded).
33 public class CarServiceLoaderEmbedded extends CarServiceLoader {

Completed in 79 milliseconds