Home
last modified time | relevance | path

Searched refs:ReportJsonFile (Results 1 – 5 of 5) sorted by relevance

/developtools/hiperf/src/
Dreport_json_file.cpp29 bool ReportJsonFile::debug_ = false;
30 void ReportJsonFile::addNewFunction(int libId, std::string_view name) in addNewFunction()
36 void ReportJsonFile::ProcessSymbolsFiles( in ProcessSymbolsFiles()
53 void ReportJsonFile::UpdateCallNodeEventCount() in UpdateCallNodeEventCount()
66 ReportConfigItem &ReportJsonFile::GetConfig(uint64_t id) in GetConfig()
78 int ReportJsonFile::GetFunctionID(int libId, std::string_view function) in GetFunctionID()
92 void ReportJsonFile::UpdateReportSample(uint64_t id, pid_t pid, pid_t tid, uint64_t eventCount) in UpdateReportSample()
105 void ReportJsonFile::AddReportCallStack(uint64_t eventCount, ReportCallNodeItem &callNode, in AddReportCallStack()
137 void ReportJsonFile::AddReportCallStackReverse(uint64_t eventCount, ReportCallNodeItem &callNode, in AddReportCallStackReverse()
169 uint32_t ReportJsonFile::GetConfigIndex(uint64_t id) in GetConfigIndex()
[all …]
Dsubcommand_report.cpp184 ReportJsonFile::debug_ = debug_; in VerifyOption()
472 std::make_unique<ReportJsonFile>(recordFileReader_, GetReport().virtualRuntime_); in LoadPerfData()
/developtools/hiperf/test/unittest/common/native/
Dreport_json_file_test.cpp34 std::unique_ptr<ReportJsonFile> PrepairReportJson(const VirtualRuntime &virtualRuntime) const;
65 std::unique_ptr<ReportJsonFile> ReportJsonFileTest::PrepairReportJson( in PrepairReportJson()
68 std::unique_ptr<ReportJsonFile> json = in PrepairReportJson()
69 std::make_unique<ReportJsonFile>(nullptr, virtualRuntime); in PrepairReportJson()
481 ReportJsonFile json(nullptr, virtualRuntime);
508 std::unique_ptr<ReportJsonFile> json = PrepairReportJson(virtualRuntime);
546 std::unique_ptr<ReportJsonFile> json = PrepairReportJson(virtualRuntime);
577 std::unique_ptr<ReportJsonFile> json =
578 std::make_unique<ReportJsonFile>(nullptr, virtualRuntime);
611 std::unique_ptr<ReportJsonFile> json = PrepairReportJson(virtualRuntime);
[all …]
/developtools/hiperf/include/
Dsubcommand_report.h173 std::unique_ptr<ReportJsonFile> reportJsonFile_ = nullptr;
Dreport_json_file.h358 class ReportJsonFile {
363 ReportJsonFile(const std::unique_ptr<PerfFileReader> &recordFileReader, in ReportJsonFile() function