Home | History | Annotate | Download | only in Commands

Lines Matching defs:target_idx

61 DumpTargetInfo (uint32_t target_idx, Target *target, const char *prefix_cstr, bool show_stopped_process_status, Stream &strm)
74 strm.Printf ("%starget #%u: %s", prefix_cstr ? prefix_cstr : "", target_idx, exe_path);
428 uint32_t target_idx = Args::StringToUInt32 (target_idx_arg, UINT32_MAX, 0, &success);
433 if (target_idx < num_targets)
435 TargetSP target_sp (target_list.GetTargetAtIndex (target_idx));
446 result.AppendErrorWithFormat ("target #%u is NULL in target list\n", target_idx);
453 target_idx,
528 uint32_t target_idx = Args::StringToUInt32 (target_idx_arg, UINT32_MAX, 0, &success);
531 if (target_idx < num_targets)
533 target_sp = target_list.GetTargetAtIndex (target_idx);
542 target_idx,
546 target_idx);