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

  /packages/services/Car/car-lib/src/android/car/hardware/
CarPropertyConfig.aidl 19 parcelable CarPropertyConfig;
CarPropertyConfig.java 32 * <p>Use {@link CarPropertyConfig#newBuilder} to create an instance of this class.
40 public class CarPropertyConfig<T> implements Parcelable {
46 private CarPropertyConfig(Class<T> type, int propertyId, int areaType,
133 private CarPropertyConfig(Parcel in) {
151 public static final Creator<CarPropertyConfig> CREATOR = new Creator<CarPropertyConfig>() {
153 public CarPropertyConfig createFromParcel(Parcel in) {
154 return new CarPropertyConfig(in);
158 public CarPropertyConfig[] newArray(int size) {
159 return new CarPropertyConfig[size]
    [all...]
CarVendorExtensionManager.java 121 public List<CarPropertyConfig> getProperties() throws CarNotConnectedException {
  /packages/services/Car/car-lib/src/android/car/hardware/property/
ICarProperty.aidl 19 import android.car.hardware.CarPropertyConfig;
32 List<CarPropertyConfig> getPropertyList() = 2;
CarPropertyManagerBase.java 24 import android.car.hardware.CarPropertyConfig;
157 public List<CarPropertyConfig> getPropertyList() throws CarNotConnectedException {
  /packages/services/Car/tests/android_car_api_test/src/android/car/apitest/
CarPropertyConfigTest.java 19 import android.car.hardware.CarPropertyConfig;
23 * Unit tests for {@link CarPropertyConfig}
31 private CarPropertyConfig<Float> createFloatPropertyConfig() {
32 CarPropertyConfig<Float> config = CarPropertyConfig
54 CarPropertyConfig<Float> config = createFloatPropertyConfig();
57 CarPropertyConfig<Float> configRead = readFromParcel();
73 CarPropertyConfig<Integer[]> config = CarPropertyConfig
81 CarPropertyConfig<Integer[]> configRead = readFromParcel()
    [all...]
CarCabinManagerTest.java 20 import android.car.hardware.CarPropertyConfig;
43 List<CarPropertyConfig> properties = mCabinManager.getPropertyList();
47 for (CarPropertyConfig property : properties) {
56 private void assertTypeAndZone(CarPropertyConfig property) {
117 private void checkIntMinMax(CarPropertyConfig<Integer> property) {
CarHvacManagerTest.java 20 import android.car.hardware.CarPropertyConfig;
44 List<CarPropertyConfig> properties = mHvacManager.getPropertyList();
48 for (CarPropertyConfig property : properties) {
67 private void assertTypeAndZone(CarPropertyConfig property) {
108 private void checkTypeAndGlobal(Class clazz, boolean global, CarPropertyConfig<Integer> property) {
116 private void checkIntMinMax(CarPropertyConfig<Integer> property) {
141 private void checkFloatMinMax(CarPropertyConfig<Float> property) {
CarPropertyTestBase.java 19 import android.car.hardware.CarPropertyConfig;
26 * Base class to test {@link CarPropertyConfig} and {@link CarPropertyValue}.
  /packages/apps/Car/Hvac/src/com/android/car/hvac/
HvacPolicy.java 18 import android.car.hardware.CarPropertyConfig;
32 public HvacPolicy(Context context, List<CarPropertyConfig> properties) {
34 for (CarPropertyConfig config : properties) {
LocalHvacPropertyService.java 21 import android.car.hardware.CarPropertyConfig;
62 private final List<CarPropertyConfig> mPropertyList;
67 CarPropertyConfig fanSpeedConfig = CarPropertyConfig.newBuilder(Integer.class,
72 CarPropertyConfig temperatureConfig = CarPropertyConfig.newBuilder(Float.class,
94 public List<CarPropertyConfig> getPropertyList() throws RemoteException {
HvacController.java 22 import android.car.hardware.CarPropertyConfig;
164 List<CarPropertyConfig> properties = null;
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/hvac/
HvacTestFragment.java 24 import android.car.hardware.CarPropertyConfig;
189 List<CarPropertyConfig> props;
197 for(CarPropertyConfig prop : props) {
265 private void configureOutsideTemp(View v, CarPropertyConfig prop) {
269 private void configureDualOn(View v, CarPropertyConfig prop) {
285 private void configureAcOn(View v, CarPropertyConfig prop) {
301 private void configureAutoModeOn(View v, CarPropertyConfig prop) {
317 private void configureFanPosition(View v, CarPropertyConfig prop) {
362 private void configureFanSpeed(View v, CarPropertyConfig prop) {
405 private void configureTempSetpoint(View v, CarPropertyConfig prop)
    [all...]
  /packages/services/Car/service/src/com/android/car/hal/
CarPropertyUtils.java 23 import android.car.hardware.CarPropertyConfig;
35 * Utility functions to work with {@link CarPropertyConfig} and {@link CarPropertyValue}
98 * Converts {@link VehiclePropConfig} to {@link CarPropertyConfig}.
100 static CarPropertyConfig<?> toCarPropertyConfig(VehiclePropConfig p, int propertyId) {
107 return CarPropertyConfig
112 CarPropertyConfig.Builder builder = CarPropertyConfig
PropertyHalServiceBase.java 23 import android.car.hardware.CarPropertyConfig;
47 private final ConcurrentHashMap<Integer, CarPropertyConfig<?>> mProps =
77 public List<CarPropertyConfig> getPropertyList() {
157 CarPropertyConfig config = CarPropertyUtils.toCarPropertyConfig(p, mgrPropId);
213 for (CarPropertyConfig prop : mProps.values()) {
  /packages/services/Car/tests/carservice_test/src/com/android/car/test/
CarVendorExtensionManagerTest.java 22 import android.car.hardware.CarPropertyConfig;
109 List<CarPropertyConfig> configs = mManager.getProperties();
112 SparseArray<CarPropertyConfig> configById = new SparseArray<>(configs.size());
113 for (CarPropertyConfig config : configs) {
117 CarPropertyConfig prop1 = configById.get(CUSTOM_GLOBAL_INT_PROP_ID);
  /packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
E2ePerformanceTest.java 28 import android.car.hardware.CarPropertyConfig;
254 CarPropertyConfig<Float> cfg = findHvacPropConfig(Float.class, PROP, mgr);
286 CarPropertyConfig<Float> cfg, int areaId, CountDownLatch counter) {
310 private <T> CarPropertyConfig<T> findHvacPropConfig(Class<T> clazz, int hvacPropId,
313 for (CarPropertyConfig<?> cfg : mgr.getPropertyList()) {
315 return (CarPropertyConfig<T>) cfg;
  /packages/services/Car/car-lib/src/android/car/hardware/cabin/
CarCabinManager.java 24 import android.car.hardware.CarPropertyConfig;
486 * @return List of CarPropertyConfig objects available via Car Cabin Manager.
489 public List<CarPropertyConfig> getPropertyList() throws CarNotConnectedException {
  /packages/services/Car/car-lib/src/android/car/hardware/hvac/
CarHvacManager.java 24 import android.car.hardware.CarPropertyConfig;
339 * @return List of CarPropertyConfig objects available via Car Hvac Manager.
342 public List<CarPropertyConfig> getPropertyList() throws CarNotConnectedException {
  /packages/services/Car/service/src/com/android/car/
CarPropertyServiceBase.java 20 import android.car.hardware.CarPropertyConfig;
178 public List<CarPropertyConfig> getPropertyList() {

Completed in 1620 milliseconds