Home | History | Annotate | Download | only in scripts

Lines Matching refs:run_cmd

58         "-r", dest="run_cmd", metavar="CMD", nargs=argparse.REMAINDER,
111 (binary_file, attach_pid, run_cmd).
112 Precisely one of attach_pid or run_cmd will be None.
118 run_cmd = None
128 elif args.run_cmd:
129 if not args.run_cmd[0]:
131 run_cmd = args.run_cmd
132 if not run_cmd[0].startswith("/"):
134 run_cmd[0] = gdbrunner.find_executable_path(device, args.run_cmd[0],
138 "please provide an absolute path.".format(args.run_cmd[0]))
140 binary_file, local = gdbrunner.find_file(device, run_cmd[0], sysroot,
154 return (binary_file, pid, run_cmd)
235 run_cmd = None
238 binary_file, pid, run_cmd = handle_switches(args, sysroot)
254 target_pid=pid, run_cmd=run_cmd, debug_socket=debug_socket,