Home
last modified time | relevance | path

Searched refs:PerfFileSectionString (Results 1 – 9 of 9) sorted by relevance

/developtools/hiperf/test/fuzztest/perffileformat_fuzzer/
DPerfFileFormat_fuzzer.cpp28 std::unique_ptr<PerfFileSectionString> perfFileSectionString = in FuzzPerfFileFormat()
29 std::make_unique<PerfFileSectionString>(FEATURE::HIPERF_FILES_SYMBOL, buf, size); in FuzzPerfFileFormat()
/developtools/hiperf/src/
Dperf_file_format.cpp189 PerfFileSectionString::PerfFileSectionString(FEATURE id, const char *buf, size_t size) in PerfFileSectionString() function in OHOS::Developtools::HiPerf::PerfFileSectionString
196 PerfFileSectionString::PerfFileSectionString(FEATURE id, const std::string &charString) in PerfFileSectionString() function in OHOS::Developtools::HiPerf::PerfFileSectionString
202 bool PerfFileSectionString::GetBinary(char *buf, size_t size) in GetBinary()
211 size_t PerfFileSectionString::GetSize() in GetSize()
216 const std::string PerfFileSectionString::ToString() const in ToString()
Dperf_file_reader.cpp376 const PerfFileSectionString *sectionString = in GetFeatureString()
377 static_cast<const PerfFileSectionString *>(featureSection); in GetFeatureString()
421 std::make_unique<PerfFileSectionString>(feature, (char *)&buf[0], buf.size())); in ReadFeatureSection()
Dsubcommand_report.cpp329 const PerfFileSectionString *sectionString = in UpdateReportInfo()
330 static_cast<const PerfFileSectionString *>(featureSection); in UpdateReportInfo()
505 const PerfFileSectionString *sectionString = in OutputStd()
506 static_cast<const PerfFileSectionString *>(featureSection.get()); in OutputStd()
Dsubcommand_dump.cpp521 const PerfFileSectionString *sectionString = in DumpFeaturePortion()
522 static_cast<const PerfFileSectionString *>(featureSection.get()); in DumpFeaturePortion()
Dperf_file_writer.cpp413 featureSections_.emplace_back(std::make_unique<PerfFileSectionString>(feature, string)); in AddStringFeature()
/developtools/hiperf/include/
Dperf_file_format.h153 class PerfFileSectionString : public PerfFileSection {
159 PerfFileSectionString(FEATURE id, const char *buf, size_t size);
160 PerfFileSectionString(FEATURE id, const std::string &charString);
/developtools/hiperf/test/unittest/common/native/
Dperf_file_format_test.cpp89 HWTEST_F(PerfFileFormatTest, PerfFileSectionString, TestSize.Level1)
95 PerfFileSectionString withString = {FEATURE::RESERVED, testString};
101 PerfFileSectionString withBuff(FEATURE::RESERVED, buff, sizeof(buff));
/developtools/smartperf_host/trace_streamer/src/parser/hiperf_parser/
Dperf_data_parser.cpp584 auto sectionString = static_cast<const PerfFileSectionString *>(featureSection); in UpdateReportWorkloadInfo()