Searched refs:prop_contents (Results 1 – 1 of 1) sorted by relevance
42 std::string prop_contents = GetProperty(kPersistProp, ""); in uploadVoltageAvg() local43 LOG(INFO) << kPersistProp << " property contents: " << prop_contents; in uploadVoltageAvg()44 if (prop_contents.size() == 0) { // we don't have anything to upload in uploadVoltageAvg()57 for (const auto &item : android::base::Split(prop_contents, ",")) { in uploadVoltageAvg()74 std::string prop_contents; in saveVoltageAvg() local81 prop_contents = GetProperty(kPersistProp, ""); in saveVoltageAvg()84 if (prop_contents.size() > 0) in saveVoltageAvg()85 prop_contents += ","; in saveVoltageAvg()86 prop_contents += voltage_avg; in saveVoltageAvg()88 LOG(INFO) << "Saving \"" << prop_contents << "\" to " << kPersistProp; in saveVoltageAvg()[all …]