|
LLDB mainline
|
#include "CommandObjectBreakpoint.h"#include "CommandObjectBreakpointCommand.h"#include "lldb/Breakpoint/Breakpoint.h"#include "lldb/Breakpoint/BreakpointIDList.h"#include "lldb/Breakpoint/BreakpointLocation.h"#include "lldb/Host/OptionParser.h"#include "lldb/Interpreter/CommandInterpreter.h"#include "lldb/Interpreter/CommandOptionArgumentTable.h"#include "lldb/Interpreter/CommandReturnObject.h"#include "lldb/Interpreter/OptionArgParser.h"#include "lldb/Interpreter/OptionGroupPythonClassWithDict.h"#include "lldb/Interpreter/OptionValueBoolean.h"#include "lldb/Interpreter/OptionValueFileColonLine.h"#include "lldb/Interpreter/OptionValueString.h"#include "lldb/Interpreter/OptionValueUInt64.h"#include "lldb/Interpreter/Options.h"#include "lldb/Target/Language.h"#include "lldb/Target/StackFrame.h"#include "lldb/Target/Target.h"#include "lldb/Target/ThreadSpec.h"#include "lldb/Utility/RegularExpression.h"#include "lldb/Utility/StreamString.h"#include "llvm/Support/FormatAdapters.h"#include <memory>#include <optional>#include <vector>#include "CommandOptions.inc"Go to the source code of this file.
Macros | |
| #define | LLDB_OPTIONS_breakpoint_modify |
| #define | LLDB_OPTIONS_breakpoint_dummy |
| #define | LLDB_OPTIONS_breakpoint_set |
| #define | LLDB_OPTIONS_breakpoint_list |
| #define | LLDB_OPTIONS_breakpoint_clear |
| #define | LLDB_OPTIONS_breakpoint_delete |
| #define | LLDB_OPTIONS_breakpoint_name |
| #define | LLDB_OPTIONS_breakpoint_access |
| #define | LLDB_OPTIONS_breakpoint_read |
| #define | LLDB_OPTIONS_breakpoint_write |
Functions | |
| static void | AddBreakpointDescription (Stream *s, Breakpoint *bp, lldb::DescriptionLevel level) |
| #define LLDB_OPTIONS_breakpoint_access |
Definition at line 1616 of file CommandObjectBreakpoint.cpp.
| #define LLDB_OPTIONS_breakpoint_clear |
Definition at line 1237 of file CommandObjectBreakpoint.cpp.
| #define LLDB_OPTIONS_breakpoint_delete |
Definition at line 1374 of file CommandObjectBreakpoint.cpp.
| #define LLDB_OPTIONS_breakpoint_dummy |
Definition at line 203 of file CommandObjectBreakpoint.cpp.
| #define LLDB_OPTIONS_breakpoint_list |
Definition at line 1107 of file CommandObjectBreakpoint.cpp.
| #define LLDB_OPTIONS_breakpoint_modify |
Definition at line 50 of file CommandObjectBreakpoint.cpp.
| #define LLDB_OPTIONS_breakpoint_name |
Definition at line 1554 of file CommandObjectBreakpoint.cpp.
| #define LLDB_OPTIONS_breakpoint_read |
Definition at line 2111 of file CommandObjectBreakpoint.cpp.
| #define LLDB_OPTIONS_breakpoint_set |
Definition at line 240 of file CommandObjectBreakpoint.cpp.
| #define LLDB_OPTIONS_breakpoint_write |
Definition at line 2292 of file CommandObjectBreakpoint.cpp.
|
static |
Definition at line 40 of file CommandObjectBreakpoint.cpp.
References lldb_private::Stream::EOL(), lldb_private::Breakpoint::GetDescription(), lldb_private::Stream::IndentLess(), and lldb_private::Stream::IndentMore().
Referenced by CommandObjectBreakpointList::DoExecute().