| /freebsd/contrib/llvm-project/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() 100 const char *BreakpointOptions::g_option_names[( 101 size_t)BreakpointOptions::OptionNames::LastOptionName]{ 106 BreakpointOptions::BreakpointOptions(bool all_flags_set) in BreakpointOptions() function in BreakpointOptions 115 BreakpointOptions::BreakpointOptions(const char *condition, bool enabled, in BreakpointOptions() function in BreakpointOptions 129 BreakpointOptions::BreakpointOptions(const BreakpointOptions &rhs) in BreakpointOptions() function in BreakpointOptions [all …]
|
| H A D | BreakpointLocation.cpp | 56 const BreakpointOptions &BreakpointLocation::GetOptionsSpecifyingKind( in GetOptionsSpecifyingKind() 57 BreakpointOptions::OptionKind kind) const { in GetOptionsSpecifyingKind() 87 m_options_up->IsOptionSet(BreakpointOptions::eAutoContinue)) in IsAutoContinue() 104 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadID() 125 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadIndex() 146 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadName() 167 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetQueueName() 212 return GetOptionsSpecifyingKind(BreakpointOptions::eCondition).GetCondition(); in GetCondition() 327 return GetOptionsSpecifyingKind(BreakpointOptions::eIgnoreCount) in GetIgnoreCount() 359 BreakpointOptions &BreakpointLocation::GetLocationOptions() { in GetLocationOptions() [all …]
|
| H A D | Breakpoint.cpp | 117 breakpoint_contents_sp->AddItem(BreakpointOptions::GetSerializationKey(), in SerializeToStructuredData() 175 std::unique_ptr<BreakpointOptions> options_up; in CreateFromStructuredData() 179 BreakpointOptions::GetSerializationKey(), options_dict); in CreateFromStructuredData() 181 options_up = BreakpointOptions::CreateFromStructuredData( in CreateFromStructuredData() 478 BreakpointOptions &Breakpoint::GetOptions() { return m_options; } in GetOptions() 480 const BreakpointOptions &Breakpoint::GetOptions() const { return m_options; } in GetOptions()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointOptions.h | 28 class BreakpointOptions { 116 BreakpointOptions(const char *condition, bool enabled = true, 122 BreakpointOptions(bool all_flags_set); 123 BreakpointOptions(const BreakpointOptions &rhs); 125 virtual ~BreakpointOptions(); 127 static std::unique_ptr<BreakpointOptions> 137 const BreakpointOptions &operator=(const BreakpointOptions &rhs); 140 void CopyOverSetOptions(const BreakpointOptions &rhs); 189 const BreakpointOptions::CommandBatonSP &command_baton_sp,
|
| H A D | BreakpointLocation.h | 199 BreakpointOptions &GetLocationOptions(); 210 const BreakpointOptions & 211 GetOptionsSpecifyingKind(BreakpointOptions::OptionKind kind) const; 372 std::unique_ptr<BreakpointOptions> m_options_up; ///< Breakpoint options
|
| H A D | BreakpointName.h | 152 BreakpointOptions &GetOptions() { return m_options; } in GetOptions() 153 const BreakpointOptions &GetOptions() const { return m_options; } in GetOptions() 155 void SetOptions(const BreakpointOptions &options) { in SetOptions() 190 BreakpointOptions m_options;
|
| H A D | Breakpoint.h | 491 BreakpointOptions &GetOptions(); 499 const BreakpointOptions &GetOptions() const; 657 BreakpointOptions m_options; // Settable breakpoint options
|
| /freebsd/contrib/llvm-project/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() 84 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, 91 Status SetBreakpointCommandCallback(BreakpointOptions &bp_options, 100 BreakpointOptions &bp_options, const char *function_name, 107 Status RegisterBreakpointCallback(BreakpointOptions &bp_options,
|
| H A D | ScriptInterpreterLua.cpp | 116 static_cast<std::vector<std::reference_wrapper<BreakpointOptions>> *>( in IOHandlerInputComplete() 118 for (BreakpointOptions &bp_options : *bp_options_vec) { in IOHandlerInputComplete() 339 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback() 356 BreakpointOptions &bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction() 365 BreakpointOptions &bp_options, const char *command_body_text, in SetBreakpointCommandCallback() 371 BreakpointOptions &bp_options, const char *command_body_text, in RegisterBreakpointCallback() 379 std::make_shared<BreakpointOptions::CommandBaton>(std::move(data_up)); in RegisterBreakpointCallback()
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectBreakpointCommand.cpp | 209 std::vector<std::reference_wrapper<BreakpointOptions>> *bp_options_vec = in IOHandlerInputComplete() 210 (std::vector<std::reference_wrapper<BreakpointOptions>> *) in IOHandlerInputComplete() 212 for (BreakpointOptions &bp_options : *bp_options_vec) { in IOHandlerInputComplete() 213 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in IOHandlerInputComplete() 220 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback() 231 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in SetBreakpointCommandCallback() 233 for (BreakpointOptions &bp_options : bp_options_vec) { in SetBreakpointCommandCallback() 234 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in SetBreakpointCommandCallback() 411 std::vector<std::reference_wrapper<BreakpointOptions>> 601 ->GetOptionsSpecifyingKind(BreakpointOptions::eCallback) in DoExecute()
|
| H A D | CommandObjectBreakpoint.cpp | 76 m_bp_opts.m_set_flags.Set(BreakpointOptions::eCondition); in SetOptionValue() 186 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in OptionParsingFinished() 197 const BreakpointOptions &GetBreakpointOptions() { return m_bp_opts; } in GetBreakpointOptions() 200 BreakpointOptions m_bp_opts;
|
| /freebsd/contrib/llvm-project/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 | 257 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, 265 Status SetBreakpointCommandCallback(BreakpointOptions &bp_options, 270 BreakpointOptions &bp_options, const char *function_name, 275 BreakpointOptions &bp_options, 276 std::unique_ptr<BreakpointOptions::CommandData> &data_up) override; 278 Status SetBreakpointCommandCallback(BreakpointOptions &bp_options,
|
| H A D | ScriptInterpreterPython.cpp | 512 std::vector<std::reference_wrapper<BreakpointOptions>> *bp_options_vec = in IOHandlerInputComplete() 513 (std::vector<std::reference_wrapper<BreakpointOptions>> *) in IOHandlerInputComplete() 515 for (BreakpointOptions &bp_options : *bp_options_vec) { in IOHandlerInputComplete() 527 auto baton_sp = std::make_shared<BreakpointOptions::CommandBaton>( in IOHandlerInputComplete() 1138 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback() 1153 BreakpointOptions &bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction() 1195 BreakpointOptions &bp_options, in SetBreakpointCommandCallback() 1196 std::unique_ptr<BreakpointOptions::CommandData> &cmd_data_up) { in SetBreakpointCommandCallback() 1206 std::make_shared<BreakpointOptions::CommandBaton>(std::move(cmd_data_up)); in SetBreakpointCommandCallback() 1213 BreakpointOptions &bp_options, const char *command_body_text, in SetBreakpointCommandCallback() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | ScriptInterpreter.cpp | 35 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in CollectDataForBreakpointCommandCallback() 145 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in SetBreakpointCommandCallback() 148 for (BreakpointOptions &bp_options : bp_options_vec) { in SetBreakpointCommandCallback() 158 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, in SetBreakpointCommandCallbackFunction() 161 for (BreakpointOptions &bp_options : bp_options_vec) { in SetBreakpointCommandCallbackFunction()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | ScriptInterpreter.h | 298 std::vector<std::reference_wrapper<BreakpointOptions>> &options, 307 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, 310 virtual Status SetBreakpointCommandCallback(BreakpointOptions &bp_options, in SetBreakpointCommandCallback() 318 BreakpointOptions &bp_options, in SetBreakpointCommandCallback() 319 std::unique_ptr<BreakpointOptions::CommandData> &data_up) { in SetBreakpointCommandCallback() 324 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec, 329 SetBreakpointCommandCallbackFunction(BreakpointOptions &bp_options, in SetBreakpointCommandCallbackFunction()
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBBreakpointLocation.cpp | 233 BreakpointOptions &bp_options = loc_sp->GetLocationOptions(); in SetScriptCallbackFunction() 259 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 | 473 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands() 474 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands() 573 BreakpointOptions &bp_options = bp_name->GetOptions(); in SetScriptCallbackFunction() 597 BreakpointOptions &bp_options = bp_name->GetOptions(); in SetScriptCallbackBody()
|
| H A D | SBBreakpoint.cpp | 490 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands() 491 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands() 617 BreakpointOptions &bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackFunction() 641 BreakpointOptions &bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackBody()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-forward.h | 40 class BreakpointOptions; variable
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Target.h | 823 const BreakpointOptions &options,
|
| /freebsd/lib/clang/liblldb/ |
| H A D | Makefile | 122 SRCS+= Breakpoint/BreakpointOptions.cpp
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | Target.cpp | 889 BreakpointName &bp_name, const BreakpointOptions &new_options, in ConfigureBreakpointName()
|