Lines Matching defs:breakpoints

245             "Sets a breakpoint or set of breakpoints in the executable.",
318 "Set exception breakpoints separately for c++ and objective-c";
535 bool m_hardware = false; // Request to use hardware breakpoints
551 // The following are the various types of breakpoints that could be set:
601 "line breakpoints.");
632 "address breakpoints.");
761 // Don't print out this warning for exception breakpoints. They can
825 "breakpoints in the executable. "
901 "no breakpoints are specified, enable all of them.",
922 const BreakpointList &breakpoints = target.GetBreakpointList();
924 size_t num_breakpoints = breakpoints.GetSize();
927 result.AppendError("No breakpoints exist to be enabled.");
932 // No breakpoint selected; enable all currently set breakpoints.
934 result.AppendMessageWithFormat("All breakpoints enabled. (%" PRIu64
935 " breakpoints)\n",
968 result.AppendMessageWithFormat("%d breakpoints enabled.\n",
986 "breakpoints.",
990 If none are specified, disable all breakpoints."
1028 const BreakpointList &breakpoints = target.GetBreakpointList();
1029 size_t num_breakpoints = breakpoints.GetSize();
1032 result.AppendError("No breakpoints exist to be disabled.");
1037 // No breakpoint selected; disable all currently set breakpoints.
1039 result.AppendMessageWithFormat("All breakpoints disabled. (%" PRIu64
1040 " breakpoints)\n",
1074 result.AppendMessageWithFormat("%d breakpoints disabled.\n",
1095 "List some or all breakpoints at configurable levels of detail.",
1164 const BreakpointList &breakpoints =
1169 size_t num_breakpoints = breakpoints.GetSize();
1172 result.AppendMessage("No breakpoints currently set.");
1180 // No breakpoint selected; show info about all currently set breakpoints.
1181 result.AppendMessage("Current breakpoints:");
1183 Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex(i).get();
1190 // Particular breakpoints selected; show info about that breakpoint.
1229 "Delete or disable breakpoints matching the "
1283 // The following are the various types of breakpoints that could be
1295 BreakpointList &breakpoints = target.GetBreakpointList();
1296 size_t num_breakpoints = breakpoints.GetSize();
1304 // Find matching breakpoints and delete them.
1309 BreakIDs.push_back(breakpoints.GetBreakpointAtIndex(i)->GetID());
1320 Breakpoint *bp = breakpoints.FindBreakpointByID(BreakIDs[i]).get();
1341 output_stream.Printf("%d breakpoints cleared:\n", num_cleared);
1365 "breakpoints are specified, delete them all.",
1436 BreakpointList &breakpoints = target.GetBreakpointList();
1438 size_t num_breakpoints = breakpoints.GetSize();
1441 result.AppendError("No breakpoints exist to be deleted.");
1445 // Handle the delete all breakpoints case:
1449 "About to delete all breakpoints, do you want to do that?",
1455 "All breakpoints removed. (%" PRIu64 " breakpoint%s)\n",
1464 // of breakpoints to delete here, the we'll delete them below.
1478 for (auto breakpoint_sp : breakpoints.Breakpoints()) {
1486 result.AppendError("No disabled breakpoints.");
1522 "%d breakpoints deleted; %d breakpoint locations disabled.\n",
1756 interpreter, "add", "Add a name to the breakpoints provided.",
1788 const BreakpointList &breakpoints = target.GetBreakpointList();
1790 size_t num_breakpoints = breakpoints.GetSize();
1792 result.AppendError("No breakpoints, cannot add names.");
1804 result.AppendError("No breakpoints specified, cannot add names.");
1814 BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id);
1830 "Delete a name from the breakpoints provided.",
1862 const BreakpointList &breakpoints = target.GetBreakpointList();
1864 size_t num_breakpoints = breakpoints.GetSize();
1866 result.AppendError("No breakpoints, cannot delete names.");
1878 result.AppendError("No breakpoints specified, cannot delete names.");
1886 BreakpointSP bp_sp = breakpoints.FindBreakpointByID(bp_id);
1946 BreakpointList &breakpoints = target.GetBreakpointList();
1948 for (BreakpointSP bp_sp : breakpoints.Breakpoints()) {
1958 result.AppendMessage("No breakpoints using this name.");
1981 Breakpoint names provide a general tagging mechanism for breakpoints. Each
1982 breakpoint name can be added to any number of breakpoints, and each breakpoint
1987 adds the name MyName to breakpoints 1-10, and:
2005 breakpoints in most of the commands that deal with breakpoints also accepts
2008 easily act on a group of breakpoints by using their name, for instance disabling
2019 breakpoints sharing it remains live, so if you change the configuration on the
2020 name, it will also change the configurations on the breakpoints:
2035 those options on the breakpoints they are added to. So for instance, if Name1
2047 other breakpoints sharing that name.
2055 5) You can also use breakpoint names to hide breakpoints from the breakpoint
2056 operations that act on all breakpoints: "break delete", "break disable" and
2063 inadvertently delete or disable useful breakpoints (e.g. ones an IDE is using
2065 list hiding is because it's confusing for people to see breakpoints they
2098 "Read and set the breakpoints previously saved to "
2248 result.AppendMessage("No breakpoints added.");
2250 // No breakpoint selected; show info about all currently set breakpoints.
2251 result.AppendMessage("New breakpoints:");
2278 "Write the breakpoints listed to a file that can "
2280 "If given no arguments, writes all breakpoints.",
2359 result.AppendErrorWithFormat("error serializing breakpoints: %s.",
2375 "Commands for operating on breakpoints (see 'help b' for shorthand.)",
2481 // they correspond to valid/currently set breakpoints.