Home
last modified time | relevance | path

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

/system/extras/simpleperf/scripts/test/
Dapp_test.py116 self, summary_file: str, check_entries: List[Tuple[str, float, float]]):
124 fulfilled = [False for x in check_entries]
127 for i, (name, need_acc_period, need_period) in enumerate(check_entries):
136 self.check_fulfilled_entries(fulfilled, check_entries)
138 def check_inferno_report_html(self, check_entries, filename="report.html"): argument
142 fulfilled = [False for _ in check_entries]
145 for i, entry in enumerate(check_entries):
152 self.check_fulfilled_entries(fulfilled, check_entries)
/system/extras/simpleperf/
Dcmd_merge.cpp224 std::vector<std::pair<std::string, value_func_t>> check_entries = { in CheckFeatureSection() local
237 for (const auto& [name, get_value] : check_entries) { in CheckFeatureSection()