Searched refs:PerfFileSection (Results 1 – 11 of 11) sorted by relevance
| /developtools/hiperf/src/ |
| D | perf_file_format.cpp | 22 std::string PerfFileSection::GetFeatureName(FEATURE featureId) in GetFeatureName() 40 void PerfFileSection::Init(const char *buffer, size_t maxSize) in Init() 48 void PerfFileSection::Init(char *buffer, size_t maxSize) in Init() 55 bool PerfFileSection::Write(uint32_t u32) in Write() 61 bool PerfFileSection::Write(uint64_t u64) in Write() 67 bool PerfFileSection::Write(const std::string &str) in Write() 76 bool PerfFileSection::Write(const char *buf, size_t size) in Write() 81 bool PerfFileSection::Write(const char *buf, size_t size, size_t max) in Write() 100 bool PerfFileSection::Read(uint32_t &value) in Read() 106 bool PerfFileSection::Read(uint64_t &value) in Read() [all …]
|
| D | perf_file_writer.cpp | 311 static bool LeftLessRight(const std::unique_ptr<PerfFileSection> &l, in LeftLessRight() 312 const std::unique_ptr<PerfFileSection> &r) in LeftLessRight() 404 PerfFileSection::GetFeatureName(FEATURE::NRCPUS).c_str(), nrCpusAvailable, nrCpusOnline); in AddNrCpusFeature() 417 HLOGV("add feature '%s' %zu", PerfFileSection::GetFeatureName(FEATURE::EVENT_DESC).c_str(), in AddEventDescFeature() 428 HLOGV("add feature '%s' string '%s'", PerfFileSection::GetFeatureName(feature).c_str(), in AddStringFeature() 446 PerfFileSection::GetFeatureName(feature).c_str(), v); in AddU64Feature()
|
| D | perf_file_reader.cpp | 362 const std::vector<std::unique_ptr<PerfFileSection>> &PerfFileReader::GetFeatureSections() const in GetFeatureSections() 369 std::string featureName = PerfFileSection::GetFeatureName(feature); in GetFeatureString() 374 const PerfFileSection *featureSection = GetFeatureSection(feature); in GetFeatureString() 386 const PerfFileSection *PerfFileReader::GetFeatureSection(FEATURE feature) const in GetFeatureSection() 411 HLOGV("process feature %d:%s", feature, PerfFileSection::GetFeatureName(feature).c_str()); in ReadFeatureSection()
|
| D | subcommand_report.cpp | 312 const PerfFileSection *featureSection = in UpdateReportInfo() 334 const PerfFileSection *featureSection = in LoadEventConfigData() 349 const PerfFileSection *featureSection = in LoadEventDesc() 495 PerfFileSection::GetFeatureName(featureSection.get()->featureId_).c_str(), in OutputStd()
|
| D | subcommand_dump.cpp | 258 PrintIndent(indent, "feature: %s\n", PerfFileSection::GetFeatureName(feature).c_str()); in DumpPrintFileHeader() 502 PerfFileSection::GetFeatureName(feature).c_str()); in DumpFeaturePortion() 512 PerfFileSection::GetFeatureName(featureSection.get()->featureId_).c_str()); in DumpFeaturePortion()
|
| /developtools/hiperf/include/ |
| D | perf_file_format.h | 123 class PerfFileSection { 130 virtual ~PerfFileSection() {} in ~PerfFileSection() 131 explicit PerfFileSection(const FEATURE featureId) : featureId_(featureId) in PerfFileSection() function 164 class PerfFileSectionString : public PerfFileSection { 199 class PerfFileSectionSymbolsFiles : public PerfFileSection { 205 : PerfFileSection(id), symbolFileStructs_(symbolFileStructs) in PerfFileSectionSymbolsFiles() 220 class PerfFileSectionNrCpus : public PerfFileSection { 233 class PerfFileSectionU64 : public PerfFileSection { 246 class PerfFileSectionEventDesc : public PerfFileSection {
|
| D | perf_file_reader.h | 48 const std::vector<std::unique_ptr<PerfFileSection>> &GetFeatureSections() const; 49 const PerfFileSection *GetFeatureSection(FEATURE feature) const; 90 std::vector<std::unique_ptr<PerfFileSection>> perfFileSections_;
|
| D | perf_file_writer.h | 81 std::vector<std::unique_ptr<PerfFileSection>> featureSections_;
|
| /developtools/hiperf/test/unittest/common/native/ |
| D | perf_file_format_test.cpp | 66 std::string name = PerfFileSection::GetFeatureName(i); 72 std::string name = PerfFileSection::GetFeatureName(i); 77 std::string name = PerfFileSection::GetFeatureName(i); 83 std::string name = PerfFileSection::GetFeatureName(i);
|
| /developtools/smartperf_host/trace_streamer/src/parser/hiperf_parser/ |
| D | perf_data_parser.cpp | 128 … const PerfFileSection* featureSection = recordDataReader_->GetFeatureSection(FEATURE::EVENT_DESC); in UpdateEventConfigInfo()
|
| /developtools/profiler/host/smartperf/trace_streamer/src/parser/hiperf_parser/ |
| D | perf_data_parser.cpp | 125 … const PerfFileSection* featureSection = recordDataReader_->GetFeatureSection(FEATURE::EVENT_DESC); in UpdateEventConfigInfo()
|