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.cpp190 PerfFileSectionString::PerfFileSectionString(FEATURE id, const char *buf, size_t size) in PerfFileSectionString() function in OHOS::Developtools::HiPerf::PerfFileSectionString
197 PerfFileSectionString::PerfFileSectionString(FEATURE id, const std::string &charString) in PerfFileSectionString() function in OHOS::Developtools::HiPerf::PerfFileSectionString
203 bool PerfFileSectionString::GetBinary(char *buf, size_t size) in GetBinary()
212 size_t PerfFileSectionString::GetSize() in GetSize()
217 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.cpp330 const PerfFileSectionString *sectionString = in UpdateReportInfo()
331 static_cast<const PerfFileSectionString *>(featureSection); in UpdateReportInfo()
506 const PerfFileSectionString *sectionString = in OutputStd()
507 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.cpp513 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.cpp87 HWTEST_F(PerfFileFormatTest, PerfFileSectionString, TestSize.Level1)
93 PerfFileSectionString withString = {FEATURE::RESERVED, testString};
99 PerfFileSectionString withBuff(FEATURE::RESERVED, buff, sizeof(buff));
/developtools/smartperf_host/trace_streamer/src/parser/hiperf_parser/
Dperf_data_parser.cpp626 auto sectionString = static_cast<const PerfFileSectionString *>(featureSection); in UpdateReportWorkloadInfo()