Home | History | Annotate | Download | only in Commands

Lines Matching refs:Watchpoint

19 #include "lldb/Breakpoint/Watchpoint.h"
37 AddWatchpointDescription(Stream *s, Watchpoint *wp, lldb::DescriptionLevel level)
176 "watchpoint list",
202 m_level(lldb::eDescriptionLevelBrief) // Watchpoint List defaults to brief descriptions
294 // No watchpoint selected; show info about all currently set watchpoints.
298 Watchpoint *wp = watchpoints.GetByIndex(i).get();
317 Watchpoint *wp = watchpoints.FindByID(wp_ids[i]).get();
339 "Give a brief description of the watchpoint (no location info)."},
342 "Give a full description of the watchpoint and its locations."},
345 "Explain everything we know about the watchpoint (for debugging debugger bugs)." },
361 "Enable the specified disabled watchpoint(s). If no watchpoints are specified, enable all of them.",
398 // No watchpoint selected; enable all currently set watchpoints.
439 "watchpoint disable",
440 "Disable the specified watchpoint(s) without removing it/them. If no watchpoints are specified, disable them all.",
476 // No watchpoint selected; disable all currently set watchpoints.
523 "watchpoint delete",
524 "Delete the specified watchpoint(s). If no watchpoints are specified, delete them all.",
605 "watchpoint ignore",
606 "Set ignore count on the specified watchpoint(s). If no watchpoints are specified, set them all.",
743 { LLDB_OPT_SET_ALL, true, "ignore-count", 'i', required_argument, NULL, 0, eArgTypeCount, "Set the number of times this watchpoint is skipped before stopping." },
759 "watchpoint modify",
760 "Modify the options on a watchpoint or set of watchpoints in the executable. "
761 "If no watchpoint is specified, act on the last created watchpoint. "
906 { LLDB_OPT_SET_ALL, false, "condition", 'c', required_argument, NULL, 0, eArgTypeExpression, "The watchpoint stops only if this condition expression evaluates to true."},
921 "watchpoint set variable",
922 "Set a watchpoint on a variable. "
923 "Use the '-w' option to specify the type of watchpoint and "
929 "If watchpoint setting fails, consider disable/delete existing ones "
942 watchpoint set variable -w read_wriate my_global_var \n\
994 // If no argument is present, issue an error message. There's no way to set a watchpoint.
1009 // Proceed to set the watchpoint now.
1079 // Now it's time to create the watchpoint.
1083 Watchpoint *wp = target->CreateWatchpoint(addr, size, &clang_type, watch_type, error).get();
1095 output_stream.Printf("Watchpoint created: ");
1102 result.AppendErrorWithFormat("Watchpoint creation failed (addr=0x%" PRIx64 ", size=%lu, variable expression='%s').\n",
1128 "watchpoint set expression",
1129 "Set a watchpoint on an address by supplying an expression. "
1130 "Use the '-w' option to specify the type of watchpoint and "
1136 "If watchpoint setting fails, consider disable/delete existing ones "
1149 watchpoint set expression -w write -x 1 -- foo + 32\n\
1236 // If no argument is present, issue an error message. There's no way to set a watchpoint.
1251 // Proceed to set the watchpoint now.
1292 // Now it's time to create the watchpoint.
1300 Watchpoint *wp = target->CreateWatchpoint(addr, size, &clang_type, watch_type, error).get();
1304 output_stream.Printf("Watchpoint created: ");
1311 result.AppendErrorWithFormat("Watchpoint creation failed (addr=0x%" PRIx64 ", size=%lu).\n",
1337 "watchpoint set",
1338 "A set of commands for setting a watchpoint.",
1339 "watchpoint set <subcommand> [<subcommand-options>]")
1359 "watchpoint",
1361 "watchpoint <command> [<command-options>]")
1372 list_command_object->SetCommandName ("watchpoint list");
1373 enable_command_object->SetCommandName("watchpoint
1374 disable_command_object->SetCommandName("watchpoint disable");
1375 delete_command_object->SetCommandName("watchpoint delete");
1376 ignore_command_object->SetCommandName("watchpoint ignore");
1377 command_command_object->SetCommandName ("watchpoint command");
1378 modify_command_object->SetCommandName("watchpoint modify");
1379 set_command_object->SetCommandName("watchpoint set");