Lines Matching defs:watchpoints
152 "List all watchpoints at configurable levels of detail.", nullptr,
213 "Number of supported hardware watchpoints: %u\n",
218 const WatchpointList &watchpoints = target.GetWatchpointList();
223 size_t num_watchpoints = watchpoints.GetSize();
226 result.AppendMessage("No watchpoints currently set.");
234 // No watchpoint selected; show info about all currently set watchpoints.
235 result.AppendMessage("Current watchpoints:");
237 WatchpointSP watch_sp = watchpoints.GetByIndex(i);
242 // Particular watchpoints selected; enable them.
246 result.AppendError("Invalid watchpoints specification.");
252 WatchpointSP watch_sp = watchpoints.FindByID(wp_ids[i]);
272 "no watchpoints are specified, enable all of them.",
296 const WatchpointList &watchpoints = target.GetWatchpointList();
298 size_t num_watchpoints = watchpoints.GetSize();
301 result.AppendError("No watchpoints exist to be enabled.");
306 // No watchpoint selected; enable all currently set watchpoints.
308 result.AppendMessageWithFormat("All watchpoints enabled. (%" PRIu64
309 " watchpoints)\n",
313 // Particular watchpoints selected; enable them.
317 result.AppendError("Invalid watchpoints specification.");
326 result.AppendMessageWithFormat("%d watchpoints enabled.\n", count);
340 "removing it/them. If no watchpoints are "
365 const WatchpointList &watchpoints = target.GetWatchpointList();
366 size_t num_watchpoints = watchpoints.GetSize();
369 result.AppendError("No watchpoints exist to be disabled.");
374 // No watchpoint selected; disable all currently set watchpoints.
376 result.AppendMessageWithFormat("All watchpoints disabled. (%" PRIu64
377 " watchpoints)\n",
381 result.AppendError("Disable all watchpoints failed\n");
384 // Particular watchpoints selected; disable them.
388 result.AppendError("Invalid watchpoints specification.");
397 result.AppendMessageWithFormat("%d watchpoints disabled.\n", count);
415 "watchpoints are specified, delete them all.",
474 const WatchpointList &watchpoints = target.GetWatchpointList();
476 size_t num_watchpoints = watchpoints.GetSize();
479 result.AppendError("No watchpoints exist to be deleted.");
486 "About to delete all watchpoints, do you want to do that?",
491 result.AppendMessageWithFormat("All watchpoints removed. (%" PRIu64
492 " watchpoints)\n",
499 // Particular watchpoints selected; delete them.
503 result.AppendError("Invalid watchpoints specification.");
512 result.AppendMessageWithFormat("%d watchpoints deleted.\n", count);
531 "If no watchpoints are specified, set them all.",
594 const WatchpointList &watchpoints = target.GetWatchpointList();
596 size_t num_watchpoints = watchpoints.GetSize();
599 result.AppendError("No watchpoints exist to be ignored.");
605 result.AppendMessageWithFormat("All watchpoints ignored. (%" PRIu64
606 " watchpoints)\n",
610 // Particular watchpoints selected; ignore them.
614 result.AppendError("Invalid watchpoints specification.");
623 result.AppendMessageWithFormat("%d watchpoints ignored.\n", count);
645 "Modify the options on a watchpoint or set of watchpoints in the "
713 const WatchpointList &watchpoints = target.GetWatchpointList();
715 size_t num_watchpoints = watchpoints.GetSize();
718 result.AppendError("No watchpoints exist to be modified.");
727 // Particular watchpoints selected; set condition on them.
731 result.AppendError("Invalid watchpoints specification.");
738 WatchpointSP watch_sp = watchpoints.FindByID(wp_ids[i]);
744 result.AppendMessageWithFormat("%d watchpoints modified.\n", count);
767 "Note that there are limited hardware resources for watchpoints. "
956 "Note that there are limited hardware resources for watchpoints. "
1147 "Commands for operating on watchpoints.",