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

/packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
H A DUtils.java20 import android.hardware.automotive.vehicle.V2_0.IVehicle;
21 import android.hardware.automotive.vehicle.V2_0.VehiclePropConfig;
22 import android.hardware.automotive.vehicle.V2_0.VehiclePropValue;
40 static boolean isVhalPropertyAvailable(IVehicle vehicle, int prop) throws RemoteException { argument
41 return vehicle.getAllPropConfigs()
47 IVehicle vehicle,
50 vehicle = Objects.requireNonNull(vehicle);
54 vehicle.get(
68 IVehicle vehicle,
46 readVhalProperty( IVehicle vehicle, VehiclePropValue request, java.util.function.BiFunction<Integer, VehiclePropValue, Boolean> f) argument
67 readVhalProperty( IVehicle vehicle, int propertyId, java.util.function.BiFunction<Integer, VehiclePropValue, Boolean> f) argument
74 readVhalProperty( IVehicle vehicle, int propertyId, int areaId, java.util.function.BiFunction<Integer, VehiclePropValue, Boolean> f) argument
[all...]
H A DE2ePerformanceTest.java35 import android.hardware.automotive.vehicle.V2_0.IVehicle;
36 import android.hardware.automotive.vehicle.V2_0.StatusCode;
37 import android.hardware.automotive.vehicle.V2_0.VehicleArea;
38 import android.hardware.automotive.vehicle.V2_0.VehiclePropValue;
39 import android.hardware.automotive.vehicle.V2_0.VehicleProperty;
40 import android.hardware.automotive.vehicle.V2_0.VehiclePropertyGroup;
41 import android.hardware.automotive.vehicle.V2_0.VehiclePropertyType;
387 HalEventsGenerator(IVehicle vehicle) { argument
388 mVehicle = vehicle;
/packages/services/Car/service/src/com/android/car/
H A DCarService.java24 import android.hardware.automotive.vehicle.V2_0.IVehicle;
151 IVehicle vehicle = getVehicle();
153 while (vehicle == null && (start + waitMilliseconds) > elapsedRealtime()) {
160 vehicle = getVehicle();
163 if (vehicle != null) {
167 return vehicle;
173 return android.hardware.automotive.vehicle.V2_0.IVehicle.getService();
212 private static void linkToDeath(IVehicle vehicle, DeathRecipient recipient) { argument
214 vehicle.linkToDeath(recipient, 0);
H A DICarImpl.java26 import android.hardware.automotive.vehicle.V2_0.IVehicle;
90 public ICarImpl(Context serviceContext, IVehicle vehicle, SystemInterface systemInterface, argument
93 mHal = new VehicleHal(vehicle);
167 public void vehicleHalReconnected(IVehicle vehicle) { argument
168 mHal.vehicleHalReconnected(vehicle);
/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
96 VehicleHal(IVehicle vehicle) argument
164 vehicleHalReconnected(IVehicle vehicle) argument
[all...]

Completed in 111 milliseconds