Home
last modified time | relevance | path

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

/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/property/
DPropertyInfo.java26 public final int mPropId; field in PropertyInfo
30 mPropId = config.getPropertyId(); in PropertyInfo()
31 mName = DebugUtils.constantToString(VehiclePropertyIds.class, /* prefix= */ "", mPropId); in PropertyInfo()
42 return ((PropertyInfo) other).mPropId == mPropId; in equals()
49 return mPropId; in hashCode()
DPropertyListAdapter.java84 return mPropInfo.get(pos).mPropId; in getItemId()
/packages/services/Car/car-test-lib/src/android/car/testapi/
DFakeCarPropertyService.java183 final int mPropId; field in FakeCarPropertyService.PropKey
187 this.mPropId = propId; in PropKey()
209 return mPropId == propKey.mPropId && mAreaId == propKey.mAreaId; in equals()
214 return Objects.hash(mPropId, mAreaId); in hashCode()
/packages/services/Car/service/src/com/android/car/hal/
DVehicleHal.java1068 final int mPropId; field in VehicleHal.HalPropValueSetter
1073 mPropId = propId; in HalPropValueSetter()
1094 HalPropValue propValue = mPropValueBuilder.build(mPropId, mAreaId, value); in to()
1105 HalPropValue propValue = mPropValueBuilder.build(mPropId, mAreaId, values); in to()
1123 HalPropValue propValue = mPropValueBuilder.build(mPropId, mAreaId, intValues); in to()
1132 Slogf.i(CarLog.TAG_HAL, "set, " + toCarPropertyLog(mPropId) in submit()