Home | History | Annotate | Download | only in Commands

Lines Matching refs:breakpoints

70                              "Sets a breakpoint or set of breakpoints in the executable.", 
165 error.SetErrorStringWithFormat ("Set exception breakpoints separately for c++ and objective-c");
362 result.AppendError ("Invalid target. Must set target before setting breakpoints (see 'target create' command).");
367 // The following are the various types of breakpoints that could be set:
411 result.AppendError("Only one file at a time is allowed for file and line breakpoints.");
540 // Don't print out this warning for exception breakpoints. They can get set before the target
634 "To set breakpoints on .c/.cpp/.m/.mm files that are #included, set target.inline-breakpoint-strategy"
701 "Modify the options on a breakpoint or set of breakpoints in the executable. "
905 result.AppendError ("Invalid target. No existing target or breakpoints.");
1015 "Enable the specified disabled breakpoint(s). If no breakpoints are specified, enable all of them.",
1035 result.AppendError ("Invalid target. No existing target or breakpoints.");
1043 const BreakpointList &breakpoints = target->GetBreakpointList();
1045 size_t num_breakpoints = breakpoints.GetSize();
1049 result.AppendError ("No breakpoints exist to be enabled.");
1056 // No breakpoint selected; enable all currently set breakpoints.
1058 result.AppendMessageWithFormat ("All breakpoints enabled. (%lu breakpoints)\n", num_breakpoints);
1095 result.AppendMessageWithFormat ("%d breakpoints enabled.\n", enable_count + loc_count);
1115 "Disable the specified breakpoint(s) without removing it/them. If no breakpoints are specified, disable them all.",
1120 If no breakpoints are specified, disable them all.\n\
1155 result.AppendError ("Invalid target. No existing target or breakpoints.");
1163 const BreakpointList &breakpoints = target->GetBreakpointList();
1164 size_t num_breakpoints = breakpoints.GetSize();
1168 result.AppendError ("No breakpoints exist to be disabled.");
1175 // No breakpoint selected; disable all currently set breakpoints.
1177 result.AppendMessageWithFormat ("All breakpoints disabled. (%lu breakpoints)\n", num_breakpoints);
1215 result.AppendMessageWithFormat ("%d breakpoints disabled.\n", disable_count + loc_count);
1236 "List some or all breakpoints at configurable levels of detail.",
1336 result.AppendError ("Invalid target. No current target or breakpoints.");
1341 const BreakpointList &breakpoints = target->GetBreakpointList(m_options.m_internal);
1345 size_t num_breakpoints = breakpoints.GetSize();
1349 result.AppendMessage ("No breakpoints currently set.");
1358 // No breakpoint selected; show info about all currently set breakpoints.
1359 result.AppendMessage ("Current breakpoints:");
1362 Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex (i).get();
1369 // Particular breakpoints selected; show info about that breakpoint.
1402 "Show debugger internal breakpoints" },
1436 "Clears a breakpoint or set of breakpoints in the executable.",
1520 result.AppendError ("Invalid target. No existing target or breakpoints.");
1525 // The following are the various types of breakpoints that could be cleared:
1536 BreakpointList &breakpoints = target->GetBreakpointList();
1537 size_t num_breakpoints = breakpoints.GetSize();
1547 // Find matching breakpoints and delete them.
1552 BreakIDs.push_back(breakpoints.GetBreakpointAtIndex(i).get()->GetID());
1565 Breakpoint *bp = breakpoints.FindBreakpointByID(BreakIDs[i]).get();
1589 output_stream.Printf ("%d breakpoints cleared:\n", num_cleared);
1632 "Delete the specified breakpoint(s). If no breakpoints are specified, delete them all.",
1651 result.AppendError ("Invalid target. No existing target or breakpoints.");
1659 const BreakpointList &breakpoints = target->GetBreakpointList();
1661 size_t num_breakpoints = breakpoints.GetSize();
1665 result.AppendError ("No breakpoints exist to be deleted.");
1672 if (!m_interpreter.Confirm ("About to delete all breakpoints, do you want to do that?", true))
1679 result.AppendMessageWithFormat ("All breakpoints removed. (%lu %s)\n", num_breakpoints, num_breakpoints > 1 ? "breakpoints" : "breakpoint");
1718 result.AppendMessageWithFormat ("%d breakpoints deleted; %d breakpoint locations disabled.\n",
1735 "A set of commands for operating on breakpoints. Also see _regexp-break.",
1813 // of breakpoint id's and verify that they correspond to valid/currently set breakpoints.