Searched defs:Car (Results 1 - 2 of 2) sorted by relevance

/packages/services/Car/car-support-lib/src/android/support/car/
H A DCar.java43 * Use one of the createCar methods to create a new instance of the Car api. The
44 * {@link CarConnectionCallback} will respond with an {@link CarConnectionCallback#onConnected(Car)}
45 * or {@link CarConnectionCallback#onDisconnected(Car)} message. Nothing can be done with the
47 * the Car object but any manages retrieved from it should be considered invalid and will need to
48 * be retried. Also, you must call {@link #disconnect} before an instance of Car goes out of scope
57 public class Car { class
228 synchronized (Car.this) {
231 mCarConnectionCallback.onConnected(Car.this);
236 synchronized (Car.this) {
242 mCarConnectionCallback.onDisconnected(Car
285 private Car(Context context, CarConnectionCallback carConnectionCallback, method in class:Car
341 public Car(@NonNull CarServiceLoader serviceLoader) throws CarNotConnectedException { method in class:Car
[all...]
/packages/services/Car/car-lib/src/android/car/
H A DCar.java59 public final class Car { class
62 * Represent the version of Car API. This is only updated when there is API change.
211 * Permission necessary to access Car Cabin APIs.
218 * Permission necessary to access Car HVAC APIs.
225 * Permission necessary to access Car RADIO system APIs.
233 * Permission necessary to access Car PROJECTION system APIs.
346 synchronized (Car.this) {
354 synchronized (Car.this) {
378 * A factory method that creates Car instance for all Car AP
410 private Car(Context context, ServiceConnection serviceConnectionListener, method in class:Car
426 public Car(Context context, ICar service, @Nullable Handler handler) { method in class:Car
[all...]

Completed in 83 milliseconds