Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Dreport_lib_interface.cpp77 void DestroyReportLib(ReportLib* report_lib) EXPORT;
81 bool SetLogSeverity(ReportLib* report_lib, const char* log_level) EXPORT;
82 bool SetSymfs(ReportLib* report_lib, const char* symfs_dir) EXPORT;
83 bool SetRecordFile(ReportLib* report_lib, const char* record_file) EXPORT;
84 bool SetKallsymsFile(ReportLib* report_lib, const char* kallsyms_file) EXPORT;
85 void ShowIpForUnknownSymbol(ReportLib* report_lib) EXPORT;
87 Sample* GetNextSample(ReportLib* report_lib) EXPORT;
88 Event* GetEventOfCurrentSample(ReportLib* report_lib) EXPORT;
89 SymbolEntry* GetSymbolOfCurrentSample(ReportLib* report_lib) EXPORT;
90 CallChain* GetCallChainOfCurrentSample(ReportLib* report_lib) EXPORT;
[all …]
/system/extras/simpleperf/scripts/
Dsimpleperf_report_lib.py258 self.report_lib = ReportLib()
259 self.report_lib.SetRecordFile(self.perf_data_path)
262 self.report_lib.Close()
265 build_id = self.report_lib.GetBuildIdForPath('/data/t2')
271 sample = self.report_lib.GetNextSample()
274 symbol = self.report_lib.GetSymbolOfCurrentSample()
283 sample = self.report_lib.GetNextSample()
293 event = self.report_lib.GetEventOfCurrentSample()
295 callchain = self.report_lib.GetCallChainOfCurrentSample()