Lines Matching refs:run_cmd
105 "-r", dest="run_cmd", metavar="CMD", nargs=argparse.REMAINDER,
223 (binary_file, attach_pid, run_cmd).
224 Precisely one of attach_pid or run_cmd will be None.
230 run_cmd = None
240 elif args.run_cmd:
241 if not args.run_cmd[0]:
243 run_cmd = args.run_cmd
244 if not run_cmd[0].startswith("/"):
246 run_cmd[0] = gdbrunner.find_executable_path(device, args.run_cmd[0],
250 "please provide an absolute path.".format(args.run_cmd[0]))
252 binary_file, local = gdbrunner.find_file(device, run_cmd[0], sysroot,
266 return (binary_file, pid, run_cmd)
457 run_cmd = None
460 binary_file, pid, run_cmd = handle_switches(args, sysroot)
502 target_pid=pid, run_cmd=run_cmd, debug_socket=debug_socket,