Home
last modified time | relevance | path

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

/aosp14/system/core/storaged/
H A Dstoraged_info.cpp101 for (auto bw : perf_history.daily_perf()) { in load_perf_history_proto()
102 daily_perf[i++] = bw; in load_perf_history_proto()
132 for (const uint32_t& bw : daily_perf) { in refresh()
183 daily_perf[nr_days++] = daily_avg_bw; in update_perf_history()
189 daily_perf.begin() + nr_days, 0) / nr_days; in update_perf_history()
192 daily_perf[nr_days++] = daily_avg_bw; in update_perf_history()
207 ret[1] = daily_perf.size(); in get_perf_history()
217 for (size_t i = 0; i < daily_perf.size(); i++) { in get_perf_history()
218 int idx = (daily_perf.size() + nr_days - 1 - i) % daily_perf.size(); in get_perf_history()
219 ret[start + i] = daily_perf[idx]; in get_perf_history()
[all …]
H A Dstoraged.proto48 repeated uint32 daily_perf = 4; field
/aosp14/system/core/storaged/include/
H A Dstoraged_info.h55 vector<uint32_t> daily_perf; variable
63 daily_perf(WEEK_TO_DAYS, 0), nr_days(0), in storage_info_t()