Searched refs:ValidatePerfCommandLine (Results 1 – 4 of 4) sorted by relevance
/external/perf_data_converter/src/quipper/ |
D | perf_option_parser_test.cc | 13 EXPECT_TRUE(ValidatePerfCommandLine({"perf", "record"})); in TEST() 14 EXPECT_TRUE(ValidatePerfCommandLine({"perf", "record", "-e", "cycles"})); in TEST() 15 EXPECT_TRUE(ValidatePerfCommandLine( in TEST() 17 EXPECT_TRUE(ValidatePerfCommandLine( in TEST() 19 EXPECT_TRUE(ValidatePerfCommandLine( in TEST() 21 EXPECT_TRUE(ValidatePerfCommandLine({"perf", "record", "-a", "-e", "cycles", in TEST() 26 EXPECT_TRUE(ValidatePerfCommandLine( in TEST() 33 ValidatePerfCommandLine({"perf", "record", "-e", "cycles", "-v"})); in TEST() 35 ValidatePerfCommandLine({"perf", "record", "--verbose", "-e", "cycles"})); in TEST() 37 ValidatePerfCommandLine({"perf", "record", "-q", "-e", "cycles"})); in TEST() [all …]
|
D | perf_option_parser.h | 23 bool ValidatePerfCommandLine(const std::vector<string> &args);
|
D | perf_recorder.cc | 90 if (!ValidatePerfCommandLine(perf_args)) { in RunCommandAndGetSerializedOutput()
|
D | perf_option_parser.cc | 190 bool ValidatePerfCommandLine(const std::vector<string>& args) { in ValidatePerfCommandLine() function
|