Home
last modified time | relevance | path

Searched refs:ValidatePerfCommandLine (Results 1 – 4 of 4) sorted by relevance

/external/perf_data_converter/src/quipper/
Dperf_option_parser_test.cc13 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 …]
Dperf_option_parser.h23 bool ValidatePerfCommandLine(const std::vector<string> &args);
Dperf_recorder.cc90 if (!ValidatePerfCommandLine(perf_args)) { in RunCommandAndGetSerializedOutput()
Dperf_option_parser.cc190 bool ValidatePerfCommandLine(const std::vector<string>& args) { in ValidatePerfCommandLine() function