Home | History | Annotate | Download | only in scripts

Lines Matching refs:run_cmd

48         "-r", dest="run_cmd", metavar="CMD", nargs=argparse.REMAINDER,
117 (binary_file, attach_pid, run_cmd).
118 Precisely one of attach_pid or run_cmd will be None.
124 run_cmd = None
132 elif args.run_cmd:
133 if not args.run_cmd[0]:
135 if not args.run_cmd[0].startswith("/"):
137 run_cmd = args.run_cmd
138 binary_file, local = gdbrunner.find_file(device, run_cmd[0], sysroot,
152 return (binary_file, pid, run_cmd)
227 run_cmd = None
230 binary_file, pid, run_cmd = handle_switches(args, sysroot)
244 target_pid=pid, run_cmd=run_cmd, debug_socket=debug_socket,