| /openbsd-src/gnu/llvm/lldb/source/Breakpoint/ |
| H A D | BreakpointOptions.cpp | 27 *BreakpointOptions::CommandData::g_option_names[static_cast<uint32_t>( 28 BreakpointOptions::CommandData::OptionNames::LastOptionName)]{ 32 BreakpointOptions::CommandData::SerializeToStructuredData() { in SerializeToStructuredData() 59 std::unique_ptr<BreakpointOptions::CommandData> 60 BreakpointOptions::CommandData::CreateFromStructuredData( in CreateFromStructuredData() 101 const char *BreakpointOptions::g_option_names[( 102 size_t)BreakpointOptions::OptionNames::LastOptionName]{ 106 bool BreakpointOptions::NullCallback(void *baton, in NullCallback() 114 BreakpointOptions::BreakpointOptions(bool all_flags_set) in BreakpointOptions() function in BreakpointOptions 115 : m_callback(BreakpointOptions::NullCallback), in BreakpointOptions() [all …]
|
| H A D | BreakpointLocation.cpp | 55 const BreakpointOptions &BreakpointLocation::GetOptionsSpecifyingKind( in GetOptionsSpecifyingKind() 56 BreakpointOptions::OptionKind kind) const { in GetOptionsSpecifyingKind() 91 m_options_up->IsOptionSet(BreakpointOptions::eAutoContinue)) in IsAutoContinue() 116 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadID() 138 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadIndex() 160 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadName() 182 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetQueueName() 230 return GetOptionsSpecifyingKind(BreakpointOptions::eCondition) in GetConditionText() 341 return GetOptionsSpecifyingKind(BreakpointOptions::eIgnoreCount) in GetIgnoreCount() 373 BreakpointOptions &BreakpointLocation::GetLocationOptions() { in GetLocationOptions() [all …]
|
| H A D | CMakeLists.txt | 10 BreakpointOptions.cpp
|
| H A D | Breakpoint.cpp | 123 breakpoint_contents_sp->AddItem(BreakpointOptions::GetSerializationKey(), in SerializeToStructuredData() 180 std::unique_ptr<BreakpointOptions> options_up; in CreateFromStructuredData() 184 BreakpointOptions::GetSerializationKey(), options_dict); in CreateFromStructuredData() 186 options_up = BreakpointOptions::CreateFromStructuredData( in CreateFromStructuredData() 443 BreakpointOptions &Breakpoint::GetOptions() { return m_options; } in GetOptions() 445 const BreakpointOptions &Breakpoint::GetOptions() const { return m_options; } in GetOptions()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointOptions.h | 27 class BreakpointOptions { 115 BreakpointOptions(const char *condition, bool enabled = true, 121 BreakpointOptions(bool all_flags_set); 122 BreakpointOptions(const BreakpointOptions &rhs); 124 virtual ~BreakpointOptions(); 126 static std::unique_ptr<BreakpointOptions> 136 const BreakpointOptions &operator=(const BreakpointOptions &rhs); 139 void CopyOverSetOptions(const BreakpointOptions &rhs); 188 const BreakpointOptions::CommandBatonSP &command_baton_sp,
|
| H A D | BreakpointName.h | 146 BreakpointOptions &options, 163 BreakpointOptions &GetOptions() { return m_options; } in GetOptions() 164 const BreakpointOptions &GetOptions() const { return m_options; } in GetOptions() 166 void SetOptions(const BreakpointOptions &options) { in SetOptions() 201 BreakpointOptions m_options;
|
| H A D | BreakpointLocation.h | 209 BreakpointOptions &GetLocationOptions(); 220 const BreakpointOptions & 221 GetOptionsSpecifyingKind(BreakpointOptions::OptionKind kind) const; 346 std::unique_ptr<BreakpointOptions> m_options_up; ///< Breakpoint options
|
| H A D | Breakpoint.h | 496 BreakpointOptions &GetOptions(); 504 const BreakpointOptions &GetOptions() const; 660 BreakpointOptions m_options; // Settable breakpoint options
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Lua/ |
| H A D | ScriptInterpreterLua.h | 24 class CommandDataLua : public BreakpointOptions::CommandData { 26 CommandDataLua() : BreakpointOptions::CommandData() { in CommandDataLua() 30 : BreakpointOptions::CommandData(), m_extra_args_sp(extra_args_sp) { in CommandDataLua() 83 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, 90 Status SetBreakpointCommandCallback(BreakpointOptions &bp_options, 97 BreakpointOptions &bp_options, const char *function_name, 104 Status RegisterBreakpointCallback(BreakpointOptions &bp_options,
|
| H A D | ScriptInterpreterLua.cpp | 110 static_cast<std::vector<std::reference_wrapper<BreakpointOptions>> *>( in IOHandlerInputComplete() 112 for (BreakpointOptions &bp_options : *bp_options_vec) { in IOHandlerInputComplete() 325 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback() 342 BreakpointOptions &bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction() 351 BreakpointOptions &bp_options, const char *command_body_text) { in SetBreakpointCommandCallback() 356 BreakpointOptions &bp_options, const char *command_body_text, in RegisterBreakpointCallback() 364 std::make_shared<BreakpointOptions::CommandBaton>(std::move(data_up)); in RegisterBreakpointCallback()
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectBreakpointCommand.cpp | 219 std::vector<std::reference_wrapper<BreakpointOptions>> *bp_options_vec = in IOHandlerInputComplete() 220 (std::vector<std::reference_wrapper<BreakpointOptions>> *) in IOHandlerInputComplete() 222 for (BreakpointOptions &bp_options : *bp_options_vec) { in IOHandlerInputComplete() 223 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in IOHandlerInputComplete() 230 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback() 241 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in SetBreakpointCommandCallback() 243 for (BreakpointOptions &bp_options : bp_options_vec) { in SetBreakpointCommandCallback() 244 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in SetBreakpointCommandCallback() 424 std::vector<std::reference_wrapper<BreakpointOptions>> 639 ->GetOptionsSpecifyingKind(BreakpointOptions::eCallback) in DoExecute()
|
| H A D | CommandObjectBreakpoint.cpp | 73 m_bp_opts.m_set_flags.Set(BreakpointOptions::eCondition); in SetOptionValue() 162 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in OptionParsingFinished() 173 const BreakpointOptions &GetBreakpointOptions() { return m_bp_opts; } in GetBreakpointOptions() 176 BreakpointOptions m_bp_opts;
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.h | 31 class CommandDataPython : public BreakpointOptions::CommandData { 33 CommandDataPython() : BreakpointOptions::CommandData() { in CommandDataPython() 37 : BreakpointOptions::CommandData(), in CommandDataPython()
|
| H A D | ScriptInterpreterPythonImpl.h | 252 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, 260 Status SetBreakpointCommandCallback(BreakpointOptions &bp_options, 264 BreakpointOptions &bp_options, const char *function_name, 269 BreakpointOptions &bp_options, 270 std::unique_ptr<BreakpointOptions::CommandData> &data_up) override; 272 Status SetBreakpointCommandCallback(BreakpointOptions &bp_options,
|
| H A D | ScriptInterpreterPython.cpp | 513 std::vector<std::reference_wrapper<BreakpointOptions>> *bp_options_vec = in IOHandlerInputComplete() 514 (std::vector<std::reference_wrapper<BreakpointOptions>> *) in IOHandlerInputComplete() 516 for (BreakpointOptions &bp_options : *bp_options_vec) { in IOHandlerInputComplete() 528 auto baton_sp = std::make_shared<BreakpointOptions::CommandBaton>( in IOHandlerInputComplete() 1144 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback() 1159 BreakpointOptions &bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction() 1201 BreakpointOptions &bp_options, in SetBreakpointCommandCallback() 1202 std::unique_ptr<BreakpointOptions::CommandData> &cmd_data_up) { in SetBreakpointCommandCallback() 1211 std::make_shared<BreakpointOptions::CommandBaton>(std::move(cmd_data_up)); in SetBreakpointCommandCallback() 1218 BreakpointOptions &bp_options, const char *command_body_text) { in SetBreakpointCommandCallback() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Interpreter/ |
| H A D | ScriptInterpreter.cpp | 40 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback() 113 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in SetBreakpointCommandCallback() 116 for (BreakpointOptions &bp_options : bp_options_vec) { in SetBreakpointCommandCallback() 125 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in SetBreakpointCommandCallbackFunction() 128 for (BreakpointOptions &bp_options : bp_options_vec) { in SetBreakpointCommandCallbackFunction()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| H A D | ScriptInterpreter.h | 371 std::vector<std::reference_wrapper<BreakpointOptions>> &options, 380 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, 383 virtual Status SetBreakpointCommandCallback(BreakpointOptions &bp_options, in SetBreakpointCommandCallback() 392 BreakpointOptions &bp_options, in SetBreakpointCommandCallback() 393 std::unique_ptr<BreakpointOptions::CommandData> &data_up) { in SetBreakpointCommandCallback() 400 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, 405 SetBreakpointCommandCallbackFunction(BreakpointOptions &bp_options, in SetBreakpointCommandCallbackFunction()
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBBreakpointLocation.cpp | 234 BreakpointOptions &bp_options = loc_sp->GetLocationOptions(); in SetScriptCallbackFunction() 260 BreakpointOptions &bp_options = loc_sp->GetLocationOptions(); in SetScriptCallbackBody() 285 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands() 286 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
|
| H A D | SBBreakpointName.cpp | 470 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands() 471 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands() 570 BreakpointOptions &bp_options = bp_name->GetOptions(); in SetScriptCallbackFunction() 595 BreakpointOptions &bp_options = bp_name->GetOptions(); in SetScriptCallbackBody()
|
| H A D | SBBreakpoint.cpp | 493 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands() 494 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands() 619 BreakpointOptions &bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackFunction() 643 BreakpointOptions &bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackBody()
|
| /openbsd-src/gnu/usr.bin/clang/liblldbBreakpoint/ |
| H A D | Makefile | 17 BreakpointOptions.cpp \
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Breakpoint/ |
| H A D | BUILD.gn | 23 "BreakpointOptions.cpp",
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/ |
| H A D | lldb-forward.h | 40 class BreakpointOptions; variable
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | Target.h | 756 const BreakpointOptions &options,
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | Target.cpp | 759 BreakpointName &bp_name, const BreakpointOptions &new_options, in ConfigureBreakpointName()
|