Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Dreport_lib_interface.cpp101 void DestroyReportLib(ReportLib* report_lib) EXPORT;
105 bool SetLogSeverity(ReportLib* report_lib, const char* log_level) EXPORT;
106 bool SetSymfs(ReportLib* report_lib, const char* symfs_dir) EXPORT;
107 bool SetRecordFile(ReportLib* report_lib, const char* record_file) EXPORT;
108 bool SetKallsymsFile(ReportLib* report_lib, const char* kallsyms_file) EXPORT;
109 void ShowIpForUnknownSymbol(ReportLib* report_lib) EXPORT;
110 void ShowArtFrames(ReportLib* report_lib, bool show) EXPORT;
112 Sample* GetNextSample(ReportLib* report_lib) EXPORT;
113 Event* GetEventOfCurrentSample(ReportLib* report_lib) EXPORT;
114 SymbolEntry* GetSymbolOfCurrentSample(ReportLib* report_lib) EXPORT;
[all …]
/system/extras/simpleperf/scripts/
Dtest.py848 self.report_lib = ReportLib()
849 self.report_lib.SetRecordFile(os.path.join('testdata', 'perf_with_symbols.data'))
852 self.report_lib.Close()
855 build_id = self.report_lib.GetBuildIdForPath('/data/t2')
860 while self.report_lib.GetNextSample():
861 symbol = self.report_lib.GetSymbolOfCurrentSample()
870 while self.report_lib.GetNextSample():
871 sample = self.report_lib.GetCurrentSample()
879 event = self.report_lib.GetEventOfCurrentSample()
881 callchain = self.report_lib.GetCallChainOfCurrentSample()
[all …]