Home
last modified time | relevance | path

Searched refs:protobufOutputFileWriter_ (Results 1 – 3 of 3) sorted by relevance

/developtools/hiperf/test/unittest/common/native/
Dreport_protobuf_file_test.cpp36 std::unique_ptr<ReportProtobufFileWriter> protobufOutputFileWriter_ = nullptr; member in OHOS::Developtools::HiPerf::ReportProtobufFileTest
67 protobufOutputFileWriter_ = std::make_unique<ReportProtobufFileWriter>(); in SetUp()
81 ASSERT_EQ(protobufOutputFileWriter_->Create(fileName), true);
85 EXPECT_EQ(protobufOutputFileWriter_->Create(fileName), false);
97 EXPECT_EQ(protobufOutputFileWriter_->isOpen(), false);
98 ASSERT_EQ(protobufOutputFileWriter_->Create(fileName), true);
99 EXPECT_EQ(protobufOutputFileWriter_->isOpen(), true);
100 protobufOutputFileWriter_->Close();
101 EXPECT_EQ(protobufOutputFileWriter_->isOpen(), false);
140 protobufOutputFileWriter_->ProcessRecord(lost);
[all …]
/developtools/hiperf/src/
Dsubcommand_report.cpp212 protobufOutputFileWriter_->ProcessSampleRecord( in ProcessSample()
266 protobufOutputFileWriter_->ProcessRecord(*record); in RecordCallBack()
298 protobufOutputFileWriter_->ProcessSymbolsFiles( in ProcessSymbolsData()
323 protobufOutputFileWriter_->ProcessReportInfo(configNames_, workloader); in UpdateReportInfo()
537 protobufOutputFileWriter_ = std::make_unique<ReportProtobufFileWriter>(); in PrepareOutput()
538 protobufOutputFileWriter_->Create(reportFile_); in PrepareOutput()
563 if (protobufOutputFileWriter_ != nullptr) { in ~SubCommandReport()
564 protobufOutputFileWriter_->Close(); in ~SubCommandReport()
/developtools/hiperf/include/
Dsubcommand_report.h176 std::unique_ptr<ReportProtobufFileWriter> protobufOutputFileWriter_ = nullptr; variable