/developtools/hiperf/test/unittest/common/native/ |
H A D | subcommand_list_test.cpp | 57 EXPECT_EQ(subCommandList.OnSubCommand(args), true); in HWTEST_F() 73 EXPECT_EQ(subCommandList.OnSubCommand(args), true); in HWTEST_F() 89 EXPECT_EQ(subCommandList.OnSubCommand(args), true); // still not support in HWTEST_F() 105 EXPECT_EQ(subCommandList.OnSubCommand(args), true); in HWTEST_F() 121 EXPECT_EQ(subCommandList.OnSubCommand(args), true); in HWTEST_F() 137 EXPECT_EQ(subCommandList.OnSubCommand(args), false); in HWTEST_F() 153 EXPECT_EQ(subCommandList.OnSubCommand(args), true); in HWTEST_F()
|
H A D | subcommand_help_test.cpp | 46 bool OnSubCommand(std::vector<std::string> &args) override 78 EXPECT_EQ(subCommandHelp.OnSubCommand(args), true); in HWTEST_F()
|
H A D | command_test.cpp | 54 EXPECT_CALL(*subCommandAlwaysTure, OnSubCommand(_)).WillRepeatedly(Return(true)); in SetUp() 55 EXPECT_CALL(*subCommandAlwaysFalse, OnSubCommand(_)).WillRepeatedly(Return(false)); in SetUp()
|
H A D | subcommand_test.cpp | 39 bool OnSubCommand(std::vector<std::string> &args) override
|
/developtools/hiperf/include/ |
H A D | subcommand.h | 69 virtual bool OnSubCommand(std::vector<std::string> &args) = 0; 71 bool OnSubCommand(std::string stringArgs) in OnSubCommand() function in OHOS::Developtools::HiPerf::SubCommand 74 return OnSubCommand(args); in OnSubCommand()
|
H A D | subcommand_help.h | 38 bool OnSubCommand(std::vector<std::string> &args) override;
|
H A D | subcommand_list.h | 50 bool OnSubCommand(std::vector<std::string> &args) override;
|
H A D | subcommand_dump.h | 71 bool OnSubCommand(std::vector<std::string> &args) override;
|
H A D | subcommand_report.h | 106 bool OnSubCommand(std::vector<std::string> &args) override;
|
H A D | subcommand_stat.h | 91 bool OnSubCommand(std::vector<std::string> &args) override;
|
H A D | subcommand_record.h | 196 bool OnSubCommand(std::vector<std::string> &args) override;
|
/developtools/hiperf/test/unittest/common/native/include/ |
H A D | subcommand_test.h | 44 bool OnSubCommand(std::vector<std::string> &args) override 57 MOCK_METHOD1(OnSubCommand, bool(std::vector<std::string> &args));
|
/developtools/hiperf/src/ |
H A D | hiperf_libreport.cpp | 63 return report->OnSubCommand(args) ? 0 : -1; in Report() 92 return report->OnSubCommand(args) ? 0 : -1; in ReportUnwindJson() 195 return dump->OnSubCommand(args) ? 0 : -1; in Dump()
|
H A D | subcommand_list.cpp | 23 bool SubCommandList::OnSubCommand(vector<string> &args) in OnSubCommand() function in OHOS::Developtools::HiPerf::SubCommandList
|
H A D | subcommand_help.cpp | 23 bool SubCommandHelp::OnSubCommand(std::vector<std::string> &args) in OnSubCommand() function in OHOS::Developtools::HiPerf::SubCommandHelp
|
H A D | command.cpp | 64 HLOGD("OnSubCommand -> %s", subCommand->Name().c_str()); in DispatchCommands() 65 if (!subCommand->OnSubCommand(arguments)) { in DispatchCommands() 69 HLOGD("OnSubCommand successed"); in DispatchCommands()
|
H A D | subcommand_dump.cpp | 137 bool SubCommandDump::OnSubCommand(std::vector<std::string> &args) in OnSubCommand() function in OHOS::Developtools::HiPerf::SubCommandDump
|
H A D | subcommand_report.cpp | 589 bool SubCommandReport::OnSubCommand(std::vector<std::string> &args) in OnSubCommand() function in OHOS::Developtools::HiPerf::SubCommandReport
|
H A D | subcommand_stat.cpp | 635 bool SubCommandStat::OnSubCommand(std::vector<std::string> &args) in OnSubCommand() function in OHOS::Developtools::HiPerf::SubCommandStat 657 HLOGD("[OnSubCommand] selectPid %d\n", selectPid); in OnSubCommand() 662 HLOGD("[OnSubCommand] subTids empty for %d\n", selectPid); in OnSubCommand()
|
H A D | subcommand_record.cpp | 1202 bool SubCommandRecord::OnSubCommand(std::vector<std::string> &args) in OnSubCommand() function in OHOS::Developtools::HiPerf::SubCommandRecord 1896 ret = reporter->OnSubCommand(args); in OnlineReportData()
|