Lines Matching refs:report_lib
408 void DestroyReportLib(ReportLib* report_lib) EXPORT;
412 bool SetLogSeverity(ReportLib* report_lib, const char* log_level) EXPORT;
413 bool SetSymfs(ReportLib* report_lib, const char* symfs_dir) EXPORT;
414 bool SetRecordFile(ReportLib* report_lib, const char* record_file) EXPORT;
415 bool SetKallsymsFile(ReportLib* report_lib, const char* kallsyms_file) EXPORT;
416 void ShowIpForUnknownSymbol(ReportLib* report_lib) EXPORT;
417 void ShowArtFrames(ReportLib* report_lib, bool show) EXPORT;
418 void MergeJavaMethods(ReportLib* report_lib, bool merge) EXPORT;
419 bool AddProguardMappingFile(ReportLib* report_lib, const char* mapping_file) EXPORT;
421 Sample* GetNextSample(ReportLib* report_lib) EXPORT;
422 Event* GetEventOfCurrentSample(ReportLib* report_lib) EXPORT;
423 SymbolEntry* GetSymbolOfCurrentSample(ReportLib* report_lib) EXPORT;
424 CallChain* GetCallChainOfCurrentSample(ReportLib* report_lib) EXPORT;
425 const char* GetTracingDataOfCurrentSample(ReportLib* report_lib) EXPORT;
427 const char* GetBuildIdForPath(ReportLib* report_lib, const char* path) EXPORT;
428 FeatureSection* GetFeatureSection(ReportLib* report_lib, const char* feature_name) EXPORT;
436 void DestroyReportLib(ReportLib* report_lib) { in DestroyReportLib() argument
437 delete report_lib; in DestroyReportLib()
440 bool SetLogSeverity(ReportLib* report_lib, const char* log_level) { in SetLogSeverity() argument
441 return report_lib->SetLogSeverity(log_level); in SetLogSeverity()
444 bool SetSymfs(ReportLib* report_lib, const char* symfs_dir) { in SetSymfs() argument
445 return report_lib->SetSymfs(symfs_dir); in SetSymfs()
448 bool SetRecordFile(ReportLib* report_lib, const char* record_file) { in SetRecordFile() argument
449 return report_lib->SetRecordFile(record_file); in SetRecordFile()
452 void ShowIpForUnknownSymbol(ReportLib* report_lib) { in ShowIpForUnknownSymbol() argument
453 return report_lib->ShowIpForUnknownSymbol(); in ShowIpForUnknownSymbol()
456 void ShowArtFrames(ReportLib* report_lib, bool show) { in ShowArtFrames() argument
457 return report_lib->ShowArtFrames(show); in ShowArtFrames()
460 void MergeJavaMethods(ReportLib* report_lib, bool merge) { in MergeJavaMethods() argument
461 return report_lib->MergeJavaMethods(merge); in MergeJavaMethods()
464 bool SetKallsymsFile(ReportLib* report_lib, const char* kallsyms_file) { in SetKallsymsFile() argument
465 return report_lib->SetKallsymsFile(kallsyms_file); in SetKallsymsFile()
468 bool AddProguardMappingFile(ReportLib* report_lib, const char* mapping_file) { in AddProguardMappingFile() argument
469 return report_lib->AddProguardMappingFile(mapping_file); in AddProguardMappingFile()
472 Sample* GetNextSample(ReportLib* report_lib) { in GetNextSample() argument
473 return report_lib->GetNextSample(); in GetNextSample()
476 Event* GetEventOfCurrentSample(ReportLib* report_lib) { in GetEventOfCurrentSample() argument
477 return report_lib->GetEventOfCurrentSample(); in GetEventOfCurrentSample()
480 SymbolEntry* GetSymbolOfCurrentSample(ReportLib* report_lib) { in GetSymbolOfCurrentSample() argument
481 return report_lib->GetSymbolOfCurrentSample(); in GetSymbolOfCurrentSample()
484 CallChain* GetCallChainOfCurrentSample(ReportLib* report_lib) { in GetCallChainOfCurrentSample() argument
485 return report_lib->GetCallChainOfCurrentSample(); in GetCallChainOfCurrentSample()
488 const char* GetTracingDataOfCurrentSample(ReportLib* report_lib) { in GetTracingDataOfCurrentSample() argument
489 return report_lib->GetTracingDataOfCurrentSample(); in GetTracingDataOfCurrentSample()
492 const char* GetBuildIdForPath(ReportLib* report_lib, const char* path) { in GetBuildIdForPath() argument
493 return report_lib->GetBuildIdForPath(path); in GetBuildIdForPath()
496 FeatureSection* GetFeatureSection(ReportLib* report_lib, const char* feature_name) { in GetFeatureSection() argument
497 return report_lib->GetFeatureSection(feature_name); in GetFeatureSection()