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

/packages/services/Car/car-support-lib/src/android/support/car/
H A DCar.java45 * Use one of the createCar methods to create a new instance of the Car api. The
46 * {@link CarConnectionCallback} will respond with an {@link CarConnectionCallback#onConnected(Car)}
47 * or {@link CarConnectionCallback#onDisconnected(Car)} message. Nothing can be done with the
49 * the Car object but any manages retrieved from it should be considered invalid and will need to
50 * be retried. Also, you must call {@link #disconnect} before an instance of Car goes out of scope
59 public class Car { class
230 synchronized (Car.this) {
233 mCarConnectionCallback.onConnected(Car.this);
238 synchronized (Car.this) {
245 mCarConnectionCallback.onDisconnected(Car
288 private Car(Context context, CarConnectionCallback carConnectionCallback, method in class:Car
344 public Car(@NonNull CarServiceLoader serviceLoader) throws CarNotConnectedException { method in class:Car
[all...]
/packages/services/Car/car-lib/src/android/car/
H A DCar.java62 public final class Car { class
65 * Represent the version of Car API. This is only updated when there is API change.
284 * Permission necessary to access Car Cabin APIs.
339 * Permission necessary to access Car HVAC APIs.
347 * Permission necessary to access Car POWER APIs.
354 * Permission necessary to access Car PROJECTION system APIs.
378 * Permission necessary to access CarDrivingStateService to get a Car's driving state.
499 synchronized (Car.this) {
507 synchronized (Car.this) {
531 * A factory method that creates Car instanc
563 private Car(Context context, ServiceConnection serviceConnectionListener, method in class:Car
579 public Car(Context context, ICar service, @Nullable Handler handler) { method in class:Car
[all...]

Completed in 72 milliseconds