Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/car-lib/src/android/car/diagnostic/
H A DCarDiagnosticEvent.java53 private final SparseIntArray mIntValues; field in CarDiagnosticEvent
82 mIntValues.put(key, value); in CarDiagnosticEvent()
103 dest.writeInt(mIntValues.size()); in writeToParcel()
105 int key = mIntValues.keyAt(i); in writeToParcel()
188 mIntValues = intValues; in CarDiagnosticEvent()
243 mIntValues.put(key, value); in withIntValue()
254 mIntValues.put(key, value); in setIntValue()
382 if (otherEvent.mIntValues.size() != mIntValues.size()) { in equals()
456 mIntValues.toString(), in toString()
502 return mIntValues.valueAt(index); in getSystemIntegerSensor()
[all …]
/aosp12/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/
H A DDiagnosticEventBuilder.java96 private final DefaultedArray<Integer> mIntValues;
116 mIntValues = new DefaultedArray<>(mNumIntSensors, 0); in DiagnosticEventBuilder()
121 mIntValues.clear(); in clear()
129 mIntValues.set(index, value); in addIntSensor()
156 mIntValues.forEach(propValueBuilder::addIntValue); in build()
H A DDiagnosticJson.java86 final SparseArray<Integer> mIntValues = new SparseArray<>(); field in DiagnosticJson.Builder
101 mIntValues.put(id, value); in readIntValues()
153 mType.get(), mTimestamp.get(), mIntValues, mFloatValues, mDtc.get(null)); in build()