Searched refs:runner_args (Results 1 – 5 of 5) sorted by relevance
/Zephyr-Core-3.7.0/scripts/west_commands/ |
D | debug.py | 33 def do_run(self, my_args, runner_args): argument 34 do_run_common(self, my_args, runner_args) 57 def do_run(self, my_args, runner_args): argument 58 do_run_common(self, my_args, runner_args) 75 def do_run(self, my_args, runner_args): argument 76 do_run_common(self, my_args, runner_args)
|
D | robot.py | 28 def do_run(self, my_args, runner_args): argument 29 do_run_common(self, my_args, runner_args)
|
D | simulate.py | 28 def do_run(self, my_args, runner_args): argument 29 do_run_common(self, my_args, runner_args)
|
D | flash.py | 30 def do_run(self, my_args, runner_args): argument 33 do_run_common(self, my_args, runner_args, domain_file=domains_file)
|
D | run_common.py | 324 runner_args = [arg for arg in user_runner_args if arg != '--'] 329 if len(used_cmds) > 0 and len(runner_args) > 0: 330 i = len(runner_args) - 1 333 … if cmd.command == runner_args[i] and (runner_name in cmd.runners or 'all' in cmd.runners): 365 runner_args.pop(i) 409 runner_args.append('--reset') 411 runner_args.append('--no-reset') 417 final_argv = runners_yaml['args'][runner_name] + runner_args
|