Lines Matching refs:args
274 const std::vector<std::string> args(tokenized_cmd.begin() + 1,
278 return cmd->Action(args);
328 DebugReturn HelpCmd::Action(const std::vector<std::string>& args) {
329 USE(args);
335 DebugReturn BreakCmd::Action(const std::vector<std::string>& args) {
336 if (args.size() != 1) {
341 std::string arg = args.front();
364 DebugReturn StepCmd::Action(const std::vector<std::string>& args) {
365 if (args.size() > 1) {
375 if (args.size() == 1) {
377 std::string arg = args.front();
411 DebugReturn ContinueCmd::Action(const std::vector<std::string>& args) {
412 USE(args);
425 DebugReturn PrintCmd::Action(const std::vector<std::string>& args) {
426 if (args.size() != 1) {
433 if (args.front() == "all") {
436 } else if (args.front() == "system") {
438 } else if (args.front() == "ffr") {
441 auto reg = Debugger::ParseRegString(args.front());
485 DebugReturn TraceCmd::Action(const std::vector<std::string>& args) {
486 if (args.size() != 0) {
506 DebugReturn GdbCmd::Action(const std::vector<std::string>& args) {
507 if (args.size() != 0) {