Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/fuelgauge/batteryusage/db/
DBatteryReattributeEntity.java43 public BatteryReattributeEntity(@NonNull BatteryReattribute batteryReattribute) { in BatteryReattributeEntity() argument
45 batteryReattribute.getTimestampStart(), in BatteryReattributeEntity()
46 batteryReattribute.getTimestampEnd(), in BatteryReattributeEntity()
47 ConvertUtils.encodeBatteryReattribute(batteryReattribute)); in BatteryReattributeEntity()
61 final BatteryReattribute batteryReattribute = in toString() local
67 .append("\n\t" + batteryReattribute); in toString()
68 if (batteryReattribute != null) { in toString()
69 builder.append("\n\t" + batteryReattribute.getReattributeDataMap()); in toString()
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/batteryusage/db/
DBatteryReattributeEntityTest.java34 final BatteryReattribute batteryReattribute = in constructor_createExpectedData() local
43 new BatteryReattributeEntity(batteryReattribute); in constructor_createExpectedData()
46 .isEqualTo(batteryReattribute.getTimestampStart()); in constructor_createExpectedData()
48 .isEqualTo(batteryReattribute.getTimestampEnd()); in constructor_createExpectedData()
52 assertThat(decodeResult).isEqualTo(batteryReattribute); in constructor_createExpectedData()
/packages/apps/Settings/src/com/android/settings/fuelgauge/batteryusage/
DConvertUtils.java207 @NonNull BatteryReattribute batteryReattribute) { in encodeBatteryReattribute()
208 return Base64.encodeToString(batteryReattribute.toByteArray(), Base64.DEFAULT); in encodeBatteryReattribute()
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/batteryusage/
DConvertUtilsTest.java709 final BatteryReattribute batteryReattribute = in decodeBatteryReattribute_returnExpectedResult() local
718 ConvertUtils.encodeBatteryReattribute(batteryReattribute)); in decodeBatteryReattribute_returnExpectedResult()