Lines Matching defs:breakpoints

240             "Sets a breakpoint or set of breakpoints in the executable.",
313 "Set exception breakpoints separately for c++ and objective-c";
529 bool m_hardware = false; // Request to use hardware breakpoints
544 // The following are the various types of breakpoints that could be set:
594 "line breakpoints.");
625 "address breakpoints.");
754 // Don't print out this warning for exception breakpoints. They can
814 "breakpoints in the executable. "
890 "no breakpoints are specified, enable all of them.",
911 const BreakpointList &breakpoints = target.GetBreakpointList();
913 size_t num_breakpoints = breakpoints.GetSize();
916 result.AppendError("No breakpoints exist to be enabled.");
921 // No breakpoint selected; enable all currently set breakpoints.
923 result.AppendMessageWithFormat("All breakpoints enabled. (%" PRIu64
924 " breakpoints)\n",
957 result.AppendMessageWithFormat("%d breakpoints enabled.\n",
975 "breakpoints.",
979 If none are specified, disable all breakpoints."
1017 const BreakpointList &breakpoints = target.GetBreakpointList();
1018 size_t num_breakpoints = breakpoints.GetSize();
1021 result.AppendError("No breakpoints exist to be disabled.");
1026 // No breakpoint selected; disable all currently set breakpoints.
1028 result.AppendMessageWithFormat("All breakpoints disabled. (%" PRIu64
1029 " breakpoints)\n",
1063 result.AppendMessageWithFormat("%d breakpoints disabled.\n",
1084 "List some or all breakpoints at configurable levels of detail.",
1153 const BreakpointList &breakpoints =
1158 size_t num_breakpoints = breakpoints.GetSize();
1161 result.AppendMessage("No breakpoints currently set.");
1169 // No breakpoint selected; show info about all currently set breakpoints.
1170 result.AppendMessage("Current breakpoints:");
1172 Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex(i).get();
1179 // Particular breakpoints selected; show info about that breakpoint.
1218 "Delete or disable breakpoints matching the "
1272 // The following are the various types of breakpoints that could be
1284 BreakpointList &breakpoints = target.GetBreakpointList();
1285 size_t num_breakpoints = breakpoints.GetSize();
1293 // Find matching breakpoints and delete them.
1298 BreakIDs.push_back(breakpoints.GetBreakpointAtIndex(i)->GetID());
1309 Breakpoint *bp = breakpoints.FindBreakpointByID(BreakIDs[i]).get();
1330 output_stream.Printf("%d breakpoints cleared:\n", num_cleared);
1354 "breakpoints are specified, delete them all.",
1425 BreakpointList &breakpoints = target.GetBreakpointList();
1427 size_t num_breakpoints = breakpoints.GetSize();
1430 result.AppendError("No breakpoints exist to be deleted.");
1434 // Handle the delete all breakpoints case:
1438 "About to delete all breakpoints, do you want to do that?",
1444 "All breakpoints removed. (%" PRIu64 " breakpoint%s)\n",
1453 // of breakpoints to delete here, the we'll delete them below.
1467 for (auto breakpoint_sp : breakpoints.Breakpoints()) {
1475 result.AppendError("No disabled breakpoints.");
1511 "%d breakpoints deleted; %d breakpoint locations disabled.\n",
1740 interpreter, "add", "Add a name to the breakpoints provided.",
1772 const BreakpointList &breakpoints = target.GetBreakpointList();
1774 size_t num_breakpoints = breakpoints.GetSize();
1776 result.AppendError("No breakpoints, cannot add names.");
1788 result.AppendError("No breakpoints specified, cannot add names.");
1798 BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id);
1814 "Delete a name from the breakpoints provided.",
1846 const BreakpointList &breakpoints = target.GetBreakpointList();
1848 size_t num_breakpoints = breakpoints.GetSize();
1850 result.AppendError("No breakpoints, cannot delete names.");
1862 result.AppendError("No breakpoints specified, cannot delete names.");
1870 BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id);
1930 BreakpointList &breakpoints = target.GetBreakpointList();
1932 for (BreakpointSP bp_sp : breakpoints.Breakpoints()) {
1942 result.AppendMessage("No breakpoints using this name.");
1965 Breakpoint names provide a general tagging mechanism for breakpoints. Each
1966 breakpoint name can be added to any number of breakpoints, and each breakpoint
1971 adds the name MyName to breakpoints 1-10, and:
1989 breakpoints in most of the commands that deal with breakpoints also accepts
1992 easily act on a group of breakpoints by using their name, for instance disabling
2003 breakpoints sharing it remains live, so if you change the configuration on the
2004 name, it will also change the configurations on the breakpoints:
2019 those options on the breakpoints they are added to. So for instance, if Name1
2031 other breakpoints sharing that name.
2039 5) You can also use breakpoint names to hide breakpoints from the breakpoint
2040 operations that act on all breakpoints: "break delete", "break disable" and
2047 inadvertently delete or disable useful breakpoints (e.g. ones an IDE is using
2049 list hiding is because it's confusing for people to see breakpoints they
2082 "Read and set the breakpoints previously saved to "
2232 result.AppendMessage("No breakpoints added.");
2234 // No breakpoint selected; show info about all currently set breakpoints.
2235 result.AppendMessage("New breakpoints:");
2262 "Write the breakpoints listed to a file that can "
2264 "If given no arguments, writes all breakpoints.",
2343 result.AppendErrorWithFormat("error serializing breakpoints: %s.",
2359 "Commands for operating on breakpoints (see 'help b' for shorthand.)",
2465 // they correspond to valid/currently set breakpoints.