Home
last modified time | relevance | path

Searched refs:BreakpointOptions (Results 1 – 23 of 23) sorted by relevance

/external/llvm-project/lldb/source/Breakpoint/
DBreakpointOptions.cpp27 *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()
107 return std::unique_ptr<BreakpointOptions::CommandData>(); in CreateFromStructuredData()
110 const char *BreakpointOptions::g_option_names[(
111 size_t)BreakpointOptions::OptionNames::LastOptionName]{
115 bool BreakpointOptions::NullCallback(void *baton, in NullCallback()
123 BreakpointOptions::BreakpointOptions(bool all_flags_set) in BreakpointOptions() function in BreakpointOptions
[all …]
DBreakpointLocation.cpp55 const BreakpointOptions *
56 BreakpointLocation::GetOptionsSpecifyingKind(BreakpointOptions::OptionKind kind) in GetOptionsSpecifyingKind()
92 m_options_up->IsOptionSet(BreakpointOptions::eAutoContinue)) in IsAutoContinue()
117 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadID()
139 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadIndex()
161 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadName()
183 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetQueueName()
224 return GetOptionsSpecifyingKind(BreakpointOptions::eCondition) in GetConditionText()
335 return GetOptionsSpecifyingKind(BreakpointOptions::eIgnoreCount) in GetIgnoreCount()
366 BreakpointOptions *BreakpointLocation::GetLocationOptions() { in GetLocationOptions()
[all …]
DBreakpoint.cpp53 m_options_up(new BreakpointOptions(true)), m_locations(*this), in Breakpoint()
61 m_options_up(new BreakpointOptions(*source_bp.m_options_up)), in Breakpoint()
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()
454 BreakpointOptions *Breakpoint::GetOptions() { return m_options_up.get(); } in GetOptions()
456 const BreakpointOptions *Breakpoint::GetOptions() const { in GetOptions()
DCMakeLists.txt10 BreakpointOptions.cpp
/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointOptions.h27 class BreakpointOptions {
117 BreakpointOptions(const char *condition, bool enabled = true,
123 BreakpointOptions(bool all_flags_set);
124 BreakpointOptions(const BreakpointOptions &rhs);
126 virtual ~BreakpointOptions();
128 static std::unique_ptr<BreakpointOptions>
138 const BreakpointOptions &operator=(const BreakpointOptions &rhs);
141 void CopyOverSetOptions(const BreakpointOptions &rhs);
190 const BreakpointOptions::CommandBatonSP &command_baton_sp,
DBreakpointName.h146 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;
DBreakpointLocation.h206 BreakpointOptions *GetLocationOptions();
217 const BreakpointOptions *GetOptionsSpecifyingKind(
218 BreakpointOptions::OptionKind kind) const;
333 std::unique_ptr<BreakpointOptions> m_options_up; ///< Breakpoint options
DBreakpoint.h485 BreakpointOptions *GetOptions();
493 const BreakpointOptions *GetOptions() const;
651 std::unique_ptr<BreakpointOptions>
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.h31 class CommandDataPython : public BreakpointOptions::CommandData {
33 CommandDataPython() : BreakpointOptions::CommandData() { in CommandDataPython()
37 BreakpointOptions::CommandData(), in CommandDataPython()
DScriptInterpreterPythonImpl.h244 std::vector<BreakpointOptions *> &bp_options_vec,
252 Status SetBreakpointCommandCallback(BreakpointOptions *bp_options,
256 BreakpointOptions *bp_options,
262 BreakpointOptions *bp_options,
263 std::unique_ptr<BreakpointOptions::CommandData> &data_up) override;
265 Status SetBreakpointCommandCallback(BreakpointOptions *bp_options,
DScriptInterpreterPython.cpp608 std::vector<BreakpointOptions *> *bp_options_vec = in IOHandlerInputComplete()
609 (std::vector<BreakpointOptions *> *)io_handler.GetUserData(); in IOHandlerInputComplete()
624 auto baton_sp = std::make_shared<BreakpointOptions::CommandBaton>( in IOHandlerInputComplete()
1200 std::vector<BreakpointOptions *> &bp_options_vec, in CollectDataForBreakpointCommandCallback()
1215 BreakpointOptions *bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction()
1257 BreakpointOptions *bp_options, in SetBreakpointCommandCallback()
1258 std::unique_ptr<BreakpointOptions::CommandData> &cmd_data_up) { in SetBreakpointCommandCallback()
1267 std::make_shared<BreakpointOptions::CommandBaton>(std::move(cmd_data_up)); in SetBreakpointCommandCallback()
1274 BreakpointOptions *bp_options, const char *command_body_text) { in SetBreakpointCommandCallback()
1280 BreakpointOptions *bp_options, const char *command_body_text, in SetBreakpointCommandCallback()
[all …]
/external/llvm-project/lldb/source/Commands/
DCommandObjectBreakpointCommand.cpp238 std::vector<BreakpointOptions *> *bp_options_vec = in IOHandlerInputComplete()
239 (std::vector<BreakpointOptions *> *)io_handler.GetUserData(); in IOHandlerInputComplete()
240 for (BreakpointOptions *bp_options : *bp_options_vec) { in IOHandlerInputComplete()
244 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in IOHandlerInputComplete()
251 std::vector<BreakpointOptions *> &bp_options_vec, in CollectDataForBreakpointCommandCallback()
262 SetBreakpointCommandCallback(std::vector<BreakpointOptions *> &bp_options_vec, in SetBreakpointCommandCallback()
265 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in SetBreakpointCommandCallback()
396 BreakpointOptions *bp_options = nullptr; in DoExecute()
452 std::vector<BreakpointOptions *> m_bp_options_vec; // This stores the
673 ->GetOptionsSpecifyingKind(BreakpointOptions::eCallback) in DoExecute()
DCommandObjectBreakpoint.cpp71 m_bp_opts.m_set_flags.Set(BreakpointOptions::eCondition); in SetOptionValue()
148 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in OptionParsingFinished()
159 const BreakpointOptions &GetBreakpointOptions() { return m_bp_opts; } in GetBreakpointOptions()
162 BreakpointOptions m_bp_opts;
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
DScriptInterpreterLua.h20 class CommandDataLua : public BreakpointOptions::CommandData {
22 CommandDataLua() : BreakpointOptions::CommandData() { in CommandDataLua()
68 Status SetBreakpointCommandCallback(BreakpointOptions *bp_options,
DScriptInterpreterLua.cpp210 BreakpointOptions *bp_options, const char *command_body_text) { in SetBreakpointCommandCallback()
217 std::make_shared<BreakpointOptions::CommandBaton>(std::move(data_up)); in SetBreakpointCommandCallback()
/external/llvm-project/lldb/source/Interpreter/
DScriptInterpreter.cpp36 std::vector<BreakpointOptions *> &bp_options_vec, in CollectDataForBreakpointCommandCallback()
86 std::vector<BreakpointOptions *> &bp_options_vec, in SetBreakpointCommandCallback()
89 for (BreakpointOptions *bp_options : bp_options_vec) { in SetBreakpointCommandCallback()
98 std::vector<BreakpointOptions *> &bp_options_vec, const char *function_name, in SetBreakpointCommandCallbackFunction()
101 for (BreakpointOptions *bp_options : bp_options_vec) { in SetBreakpointCommandCallbackFunction()
/external/llvm-project/lldb/include/lldb/Interpreter/
DScriptInterpreter.h337 std::vector<BreakpointOptions *> &options, CommandReturnObject &result);
345 SetBreakpointCommandCallback(std::vector<BreakpointOptions *> &bp_options_vec,
348 virtual Status SetBreakpointCommandCallback(BreakpointOptions *bp_options, in SetBreakpointCommandCallback()
357 BreakpointOptions *bp_options, in SetBreakpointCommandCallback()
358 std::unique_ptr<BreakpointOptions::CommandData> &data_up) { in SetBreakpointCommandCallback()
365 std::vector<BreakpointOptions *> &bp_options_vec,
371 BreakpointOptions *bp_options, in SetBreakpointCommandCallbackFunction()
/external/llvm-project/lldb/source/API/
DSBBreakpointLocation.cpp230 BreakpointOptions *bp_options = loc_sp->GetLocationOptions(); in SetScriptCallbackFunction()
257 BreakpointOptions *bp_options = loc_sp->GetLocationOptions(); in SetScriptCallbackBody()
283 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
284 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
DSBBreakpointName.cpp486 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
487 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
594 BreakpointOptions &bp_options = bp_name->GetOptions(); in SetScriptCallbackFunction()
621 BreakpointOptions &bp_options = bp_name->GetOptions(); in SetScriptCallbackBody()
DSBBreakpoint.cpp506 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
507 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
639 BreakpointOptions *bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackFunction()
664 BreakpointOptions *bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackBody()
/external/llvm-project/lldb/include/lldb/
Dlldb-forward.h40 class BreakpointOptions; variable
/external/llvm-project/lldb/include/lldb/Target/
DTarget.h723 const BreakpointOptions &options,
/external/llvm-project/lldb/source/Target/
DTarget.cpp731 BreakpointName &bp_name, const BreakpointOptions &new_options, in ConfigureBreakpointName()