Searched defs:vehicle (Results 1 - 7 of 7) sorted by relevance

/packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
H A DJsonVhalEventGenerator.java20 import android.hardware.automotive.vehicle.V2_0.IVehicle;
21 import android.hardware.automotive.vehicle.V2_0.StatusCode;
22 import android.hardware.automotive.vehicle.V2_0.VehiclePropValue;
34 JsonVhalEventGenerator(IVehicle vehicle) { argument
35 mVehicle = vehicle;
H A DLinearVhalEventGenerator.java20 import android.hardware.automotive.vehicle.V2_0.IVehicle;
21 import android.hardware.automotive.vehicle.V2_0.StatusCode;
22 import android.hardware.automotive.vehicle.V2_0.VehiclePropValue;
39 LinearVhalEventGenerator(IVehicle vehicle) { argument
40 mVehicle = vehicle;
H A DUtils.java22 import android.hardware.automotive.vehicle.V2_0.IVehicle;
23 import android.hardware.automotive.vehicle.V2_0.VehiclePropConfig;
24 import android.hardware.automotive.vehicle.V2_0.VehiclePropValue;
43 static boolean isVhalPropertyAvailable(IVehicle vehicle, int prop) throws RemoteException { argument
44 return vehicle.getAllPropConfigs()
50 IVehicle vehicle,
53 Objects.requireNonNull(vehicle);
57 vehicle.get(
71 IVehicle vehicle,
74 return readVhalProperty(vehicle, propertyI
49 readVhalProperty( IVehicle vehicle, VehiclePropValue request, java.util.function.BiFunction<Integer, VehiclePropValue, Boolean> f) argument
70 readVhalProperty( IVehicle vehicle, int propertyId, java.util.function.BiFunction<Integer, VehiclePropValue, Boolean> f) argument
77 readVhalProperty( IVehicle vehicle, int propertyId, int areaId, java.util.function.BiFunction<Integer, VehiclePropValue, Boolean> f) argument
[all...]
/packages/services/Car/service/src/com/android/car/
H A DCarService.java25 import android.hardware.automotive.vehicle.V2_0.IVehicle;
148 IVehicle vehicle = getVehicle();
150 while (vehicle == null && (start + waitMilliseconds) > elapsedRealtime()) {
157 vehicle = getVehicle();
160 if (vehicle != null) {
164 return vehicle;
170 return android.hardware.automotive.vehicle.V2_0.IVehicle.getService();
209 private static void linkToDeath(IVehicle vehicle, DeathRecipient recipient) { argument
211 vehicle.linkToDeath(recipient, 0);
H A DICarImpl.java27 import android.hardware.automotive.vehicle.V2_0.IVehicle;
28 import android.hardware.automotive.vehicle.V2_0.VehicleArea;
106 public ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface, argument
110 mHal = new VehicleHal(vehicle);
199 void vehicleHalReconnected(IVehicle vehicle) { argument
200 mHal.vehicleHalReconnected(vehicle);
449 pw.println("\t Inject a vehicle property for testing");
/packages/services/Car/service/src/com/android/car/hal/
H A DHalClient.java21 import android.hardware.automotive.vehicle.V2_0.IVehicle;
22 import android.hardware.automotive.vehicle.V2_0.IVehicleCallback;
23 import android.hardware.automotive.vehicle.V2_0.StatusCode;
24 import android.hardware.automotive.vehicle.V2_0.SubscribeOptions;
25 import android.hardware.automotive.vehicle.V2_0.VehiclePropConfig;
26 import android.hardware.automotive.vehicle.V2_0.VehiclePropValue;
44 * If call to vehicle HAL returns StatusCode.TRY_AGAIN, than {@link HalClient} will retry to
58 * @param vehicle interface to the vehicle HAL
59 * @param looper looper that will be used to propagate notifications from vehicle HA
62 HalClient(IVehicle vehicle, Looper looper, IVehicleCallback callback) argument
[all...]
H A DVehicleHal.java26 import android.hardware.automotive.vehicle.V2_0.IVehicle;
27 import android.hardware.automotive.vehicle.V2_0.IVehicleCallback;
28 import android.hardware.automotive.vehicle.V2_0.SubscribeFlags;
29 import android.hardware.automotive.vehicle.V2_0.SubscribeOptions;
30 import android.hardware.automotive.vehicle.V2_0.VehicleAreaConfig;
31 import android.hardware.automotive.vehicle.V2_0.VehiclePropConfig;
32 import android.hardware.automotive.vehicle.V2_0.VehiclePropValue;
33 import android.hardware.automotive.vehicle.V2_0.VehicleProperty;
34 import android.hardware.automotive.vehicle.V2_0.VehiclePropertyAccess;
35 import android.hardware.automotive.vehicle
92 VehicleHal(IVehicle vehicle) argument
124 vehicleHalReconnected(IVehicle vehicle) argument
[all...]

Completed in 325 milliseconds