Searched refs:extractStat (Results 1 – 4 of 4) sorted by relevance
/hardware/google/pixel/powerstats/ |
D | WlanStateResidencyDataProvider.cpp | 67 if (utils::extractStat(line, "cumulative_sleep_time_ms:", stat)) { in getResults() 70 } else if (utils::extractStat(line, "cumulative_total_on_time_ms:", stat)) { in getResults() 73 } else if (utils::extractStat(line, "deep_sleep_enter_counter:", stat)) { in getResults() 77 } else if (utils::extractStat(line, "last_deep_sleep_enter_tstamp_ms:", stat)) { in getResults()
|
D | PowerStatsUtils.cpp | 26 bool extractStat(const char *line, const std::string &prefix, uint64_t &stat) { in extractStat() function
|
D | GenericStateResidencyDataProvider.cpp | 72 if (config.entryCountSupported && utils::extractStat(line, config.entryCountPrefix, stat)) { in parseState() 77 utils::extractStat(line, config.totalTimePrefix, stat)) { in parseState() 82 utils::extractStat(line, config.lastEntryPrefix, stat)) { in parseState()
|
/hardware/google/pixel/powerstats/include/pixelpowerstats/ |
D | PowerStatsUtils.h | 14 bool extractStat(const char *line, const std::string &prefix, uint64_t &stat);
|