Home
last modified time | relevance | path

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

/hardware/google/pixel/health/
DLowBatteryShutdownMetrics.cpp39 std::string prop_contents = GetProperty(kPersistProp, ""); in uploadVoltageAvg() local
40 LOG(INFO) << kPersistProp << " property contents: " << prop_contents; in uploadVoltageAvg()
41 if (prop_contents.size() == 0) { // we don't have anything to upload in uploadVoltageAvg()
55 for (const auto &item : android::base::Split(prop_contents, ",")) { in uploadVoltageAvg()
72 std::string prop_contents; in saveVoltageAvg() local
79 prop_contents = GetProperty(kPersistProp, ""); in saveVoltageAvg()
82 if (prop_contents.size() > 0) in saveVoltageAvg()
83 prop_contents += ","; in saveVoltageAvg()
84 prop_contents += voltage_avg; in saveVoltageAvg()
86 LOG(INFO) << "Saving \"" << prop_contents << "\" to " << kPersistProp; in saveVoltageAvg()
[all …]