Home | History | Annotate | Download | only in simpleperf

Lines Matching defs:command

23 #include "command.h"
41 Command* command = Command::FindCommandByName(args[0]);
42 if (command == nullptr) {
43 LOG(ERROR) << "malformed command line: unknown command " << args[0];
48 LOG(DEBUG) << "command '" << command_name << "' starts running";
49 bool result = command->Run(args);
50 LOG(DEBUG) << "command '" << command_name << "' "