Lines Matching refs:report_lib
101 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;
115 CallChain* GetCallChainOfCurrentSample(ReportLib* report_lib) EXPORT;
116 const char* GetTracingDataOfCurrentSample(ReportLib* report_lib) EXPORT;
118 const char* GetBuildIdForPath(ReportLib* report_lib, const char* path) EXPORT;
119 FeatureSection* GetFeatureSection(ReportLib* report_lib, const char* feature_name) EXPORT;
448 void DestroyReportLib(ReportLib* report_lib) { in DestroyReportLib() argument
449 delete report_lib; in DestroyReportLib()
452 bool SetLogSeverity(ReportLib* report_lib, const char* log_level) { in SetLogSeverity() argument
453 return report_lib->SetLogSeverity(log_level); in SetLogSeverity()
456 bool SetSymfs(ReportLib* report_lib, const char* symfs_dir) { in SetSymfs() argument
457 return report_lib->SetSymfs(symfs_dir); in SetSymfs()
460 bool SetRecordFile(ReportLib* report_lib, const char* record_file) { in SetRecordFile() argument
461 return report_lib->SetRecordFile(record_file); in SetRecordFile()
464 void ShowIpForUnknownSymbol(ReportLib* report_lib) { in ShowIpForUnknownSymbol() argument
465 return report_lib->ShowIpForUnknownSymbol(); in ShowIpForUnknownSymbol()
468 void ShowArtFrames(ReportLib* report_lib, bool show) { in ShowArtFrames() argument
469 return report_lib->ShowArtFrames(show); in ShowArtFrames()
472 bool SetKallsymsFile(ReportLib* report_lib, const char* kallsyms_file) { in SetKallsymsFile() argument
473 return report_lib->SetKallsymsFile(kallsyms_file); in SetKallsymsFile()
476 Sample* GetNextSample(ReportLib* report_lib) { in GetNextSample() argument
477 return report_lib->GetNextSample(); in GetNextSample()
480 Event* GetEventOfCurrentSample(ReportLib* report_lib) { in GetEventOfCurrentSample() argument
481 return report_lib->GetEventOfCurrentSample(); in GetEventOfCurrentSample()
484 SymbolEntry* GetSymbolOfCurrentSample(ReportLib* report_lib) { in GetSymbolOfCurrentSample() argument
485 return report_lib->GetSymbolOfCurrentSample(); in GetSymbolOfCurrentSample()
488 CallChain* GetCallChainOfCurrentSample(ReportLib* report_lib) { in GetCallChainOfCurrentSample() argument
489 return report_lib->GetCallChainOfCurrentSample(); in GetCallChainOfCurrentSample()
492 const char* GetTracingDataOfCurrentSample(ReportLib* report_lib) { in GetTracingDataOfCurrentSample() argument
493 return report_lib->GetTracingDataOfCurrentSample(); in GetTracingDataOfCurrentSample()
496 const char* GetBuildIdForPath(ReportLib* report_lib, const char* path) { in GetBuildIdForPath() argument
497 return report_lib->GetBuildIdForPath(path); in GetBuildIdForPath()
500 FeatureSection* GetFeatureSection(ReportLib* report_lib, const char* feature_name) { in GetFeatureSection() argument
501 return report_lib->GetFeatureSection(feature_name); in GetFeatureSection()