Lines Matching defs:watchpoints
50 result.AppendError ("Invalid target. No existing target or watchpoints.");
177 "List all watchpoints at configurable levels of detail.",
263 result.AppendError ("Invalid target. No current target or watchpoints.");
273 result.AppendMessageWithFormat("Number of supported hardware watchpoints: %u\n",
277 const WatchpointList &watchpoints = target->GetWatchpointList();
281 size_t num_watchpoints = watchpoints.GetSize();
285 result.AppendMessage("No watchpoints currently set.");
294 // No watchpoint selected; show info about all currently set watchpoints.
295 result.AppendMessage ("Current watchpoints:");
298 Watchpoint *wp = watchpoints.GetByIndex(i).get();
305 // Particular watchpoints selected; enable them.
309 result.AppendError("Invalid watchpoints specification.");
317 Watchpoint *wp = watchpoints.FindByID(wp_ids[i]).get();
361 "Enable the specified disabled watchpoint(s). If no watchpoints are specified, enable all of them.",
385 const WatchpointList &watchpoints = target->GetWatchpointList();
387 size_t num_watchpoints = watchpoints.GetSize();
391 result.AppendError("No watchpoints exist to be enabled.");
398 // No watchpoint selected; enable all currently set watchpoints.
400 result.AppendMessageWithFormat("All watchpoints enabled. (%lu watchpoints)\n", num_watchpoints);
405 // Particular watchpoints selected; enable them.
409 result.AppendError("Invalid watchpoints specification.");
419 result.AppendMessageWithFormat("%d watchpoints enabled.\n", count);
440 "Disable the specified watchpoint(s) without removing it/them. If no watchpoints are specified, disable them all.",
464 const WatchpointList &watchpoints = target->GetWatchpointList();
465 size_t num_watchpoints = watchpoints.GetSize();
469 result.AppendError("No watchpoints exist to be disabled.");
476 // No watchpoint selected; disable all currently set watchpoints.
479 result.AppendMessageWithFormat("All watchpoints disabled. (%lu watchpoints)\n", num_watchpoints);
484 watchpoints failed\n");
490 // Particular watchpoints selected; disable them.
494 result.AppendError("Invalid watchpoints specification.");
504 result.AppendMessageWithFormat("%d watchpoints disabled.\n", count);
524 "Delete the specified watchpoint(s). If no watchpoints are specified, delete them all.",
547 const WatchpointList &watchpoints = target->GetWatchpointList();
549 size_t num_watchpoints = watchpoints.GetSize();
553 result.AppendError("No watchpoints exist to be deleted.");
560 if (!m_interpreter.Confirm("About to delete all watchpoints, do you want to do that?", true))
567 result.AppendMessageWithFormat("All watchpoints removed. (%lu watchpoints)\n", num_watchpoints);
573 // Particular watchpoints selected; delete them.
577 result.AppendError("Invalid watchpoints specification.");
587 result.AppendMessageWithFormat("%d watchpoints deleted.\n",count);
606 "Set ignore count on the specified watchpoint(s). If no watchpoints are specified, set them all.",
695 const WatchpointList &watchpoints = target->GetWatchpointList();
697 size_t num_watchpoints = watchpoints.GetSize();
701 result.AppendError("No watchpoints exist to be ignored.");
709 result.AppendMessageWithFormat("All watchpoints ignored. (%lu watchpoints)\n", num_watchpoints);
714 // Particular watchpoints selected; ignore them.
718 result.AppendError("Invalid watchpoints specification.");
728 result.AppendMessageWithFormat("%d watchpoints ignored.\n",count);
760 "Modify the options on a watchpoint or set of watchpoints in the executable. "
852 const WatchpointList &watchpoints = target->GetWatchpointList();
854 size_t num_watchpoints = watchpoints.GetSize();
858 result.AppendError("No watchpoints exist to be modified.");
871 // Particular watchpoints selected; set condition on them.
875 result.AppendError("Invalid watchpoints specification.");
884 WatchpointSP wp_sp = watchpoints.FindByID(wp_ids[i]);
891 result.AppendMessageWithFormat("%d watchpoints modified.\n",count);
928 "Note that there are limited hardware resources for watchpoints. "
1135 "Note that there are limited hardware resources for watchpoints. "
1360 "A set of commands for operating on watchpoints.",