Home
last modified time | relevance | path

Searched refs:HalPropertyInfo (Results 1 – 1 of 1) sorted by relevance

/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/vhal/
DVehicleHalFragment.java92 final List<HalPropertyInfo> supportedProperties = propConfigList.stream() in onResume()
93 .map(HalPropertyInfo::new) in onResume()
100 private static class HalPropertyInfo implements Comparable<HalPropertyInfo> { class in VehicleHalFragment
106 HalPropertyInfo(VehiclePropConfig config) { in HalPropertyInfo() method in VehicleHalFragment.HalPropertyInfo
119 return other instanceof HalPropertyInfo && ((HalPropertyInfo) other).id == id; in equals()
128 public int compareTo(HalPropertyInfo halPropertyInfo) { in compareTo()
154 private static final class ListAdapter extends ArrayAdapter<HalPropertyInfo> {
161 ListAdapter(Context context, IVehicle vehicle, List<HalPropertyInfo> properties) { in ListAdapter()
169 final HalPropertyInfo item = getItem(position); in getView()