Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp126 BreakpointOptions::BreakpointOptions(bool all_flags_set) in BreakpointOptions() function in BreakpointOptions
136 BreakpointOptions::BreakpointOptions(const char *condition, bool enabled, in BreakpointOptions() function in BreakpointOptions
154 BreakpointOptions::BreakpointOptions(const BreakpointOptions &rhs) in BreakpointOptions() function in BreakpointOptions
171 const BreakpointOptions &BreakpointOptions::
172 operator=(const BreakpointOptions &rhs) { in operator =()
189 void BreakpointOptions::CopyOverSetOptions(const BreakpointOptions &incoming) in CopyOverSetOptions()
245 BreakpointOptions::~BreakpointOptions() = default;
247 std::unique_ptr<BreakpointOptions> BreakpointOptions::CreateFromStructuredData( in CreateFromStructuredData()
440 void BreakpointOptions::SetCallback( in SetCallback()
543 void BreakpointOptions::SetThreadSpec( in SetThreadSpec()
[all …]
H A DBreakpointLocation.cpp57 const BreakpointOptions *
94 && m_options_ap->IsOptionSet(BreakpointOptions::eAutoContinue)) in IsAutoContinue()
119 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadID()
141 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadIndex()
163 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetThreadName()
185 GetOptionsSpecifyingKind(BreakpointOptions::eThreadSpec) in GetQueueName()
226 return GetOptionsSpecifyingKind(BreakpointOptions::eCondition) in GetConditionText()
338 return GetOptionsSpecifyingKind(BreakpointOptions::eIgnoreCount) in GetIgnoreCount()
369 BreakpointOptions *BreakpointLocation::GetLocationOptions() { in GetLocationOptions()
375 new BreakpointOptions(false)); in GetLocationOptions()
[all …]
H A DBreakpoint.cpp53 m_options_up(new BreakpointOptions(true)), m_locations(*this), in Breakpoint()
61 m_options_up(new BreakpointOptions(*source_bp.m_options_up.get())), in Breakpoint()
119 breakpoint_contents_sp->AddItem(BreakpointOptions::GetSerializationKey(), in SerializeToStructuredData()
175 std::unique_ptr<BreakpointOptions> options_up; in CreateFromStructuredData()
178 BreakpointOptions::GetSerializationKey(), options_dict); in CreateFromStructuredData()
180 options_up = BreakpointOptions::CreateFromStructuredData( in CreateFromStructuredData()
451 BreakpointOptions *Breakpoint::GetOptions() { return m_options_up.get(); } in GetOptions()
453 const BreakpointOptions *Breakpoint::GetOptions() const { in GetOptions()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h30 class BreakpointOptions {
117 BreakpointOptions(const char *condition, bool enabled = true,
125 BreakpointOptions(bool all_flags_set);
126 BreakpointOptions(const BreakpointOptions &rhs);
128 virtual ~BreakpointOptions();
130 static std::unique_ptr<BreakpointOptions>
142 const BreakpointOptions &operator=(const BreakpointOptions &rhs);
147 void CopyOverSetOptions(const BreakpointOptions &rhs);
200 const BreakpointOptions::CommandBatonSP &command_baton_sp,
H A DBreakpointName.h147 BreakpointOptions &options,
164 BreakpointOptions &GetOptions() { return m_options; } in GetOptions()
165 const BreakpointOptions &GetOptions() const { return m_options; } in GetOptions()
167 void SetOptions(const BreakpointOptions &options) { in SetOptions()
202 BreakpointOptions m_options;
H A DBreakpointLocation.h255 BreakpointOptions *GetLocationOptions();
268 const BreakpointOptions *GetOptionsSpecifyingKind(
269 BreakpointOptions::OptionKind kind) const;
402 std::unique_ptr<BreakpointOptions> m_options_ap; ///< Breakpoint options
H A DBreakpoint.h592 BreakpointOptions *GetOptions();
602 const BreakpointOptions *GetOptions() const;
773 std::unique_ptr<BreakpointOptions>
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DScriptInterpreter.cpp36 std::vector<BreakpointOptions *> &bp_options_vec, in CollectDataForBreakpointCommandCallback()
78 std::vector<BreakpointOptions *> &bp_options_vec, in SetBreakpointCommandCallback()
81 for (BreakpointOptions *bp_options : bp_options_vec) { in SetBreakpointCommandCallback()
90 std::vector<BreakpointOptions *> &bp_options_vec, in SetBreakpointCommandCallbackFunction()
92 for (BreakpointOptions *bp_options : bp_options_vec) { in SetBreakpointCommandCallbackFunction()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A 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 = llvm::make_unique<BreakpointOptions::CommandData>(); in IOHandlerInputComplete()
251 std::vector<BreakpointOptions *> &bp_options_vec, in CollectDataForBreakpointCommandCallback()
263 SetBreakpointCommandCallback(std::vector<BreakpointOptions *> &bp_options_vec, in SetBreakpointCommandCallback()
266 auto cmd_data = llvm::make_unique<BreakpointOptions::CommandData>(); in SetBreakpointCommandCallback()
407 BreakpointOptions *bp_options = nullptr; in DoExecute()
455 std::vector<BreakpointOptions *> m_bp_options_vec; // This stores the
699 ->GetOptionsSpecifyingKind(BreakpointOptions::eCallback) in DoExecute()
H A DCommandObjectBreakpoint.cpp87 m_bp_opts.m_set_flags.Set(BreakpointOptions::eCondition); in SetOptionValue()
176 auto cmd_data = llvm::make_unique<BreakpointOptions::CommandData>(); in OptionParsingFinished()
188 const BreakpointOptions &GetBreakpointOptions() in GetBreakpointOptions()
194 BreakpointOptions m_bp_opts;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h284 std::vector<BreakpointOptions *> &options, CommandReturnObject &result);
292 SetBreakpointCommandCallback(std::vector<BreakpointOptions *> &bp_options_vec,
295 virtual Status SetBreakpointCommandCallback(BreakpointOptions *bp_options, in SetBreakpointCommandCallback()
304 BreakpointOptions *bp_options, in SetBreakpointCommandCallback()
305 std::unique_ptr<BreakpointOptions::CommandData> &data_up) { in SetBreakpointCommandCallback()
312 std::vector<BreakpointOptions *> &bp_options_vec,
317 SetBreakpointCommandCallbackFunction(BreakpointOptions *bp_options, in SetBreakpointCommandCallbackFunction()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.h37 class CommandDataPython : public BreakpointOptions::CommandData {
39 CommandDataPython() : BreakpointOptions::CommandData() { in CommandDataPython()
389 std::vector<BreakpointOptions *> &bp_options_vec,
397 Status SetBreakpointCommandCallback(BreakpointOptions *bp_options,
400 void SetBreakpointCommandCallbackFunction(BreakpointOptions *bp_options,
405 BreakpointOptions *bp_options,
406 std::unique_ptr<BreakpointOptions::CommandData> &data_up) override;
H A DScriptInterpreterPython.cpp470 std::vector<BreakpointOptions *> *bp_options_vec = in IOHandlerInputComplete()
471 (std::vector<BreakpointOptions *> *)io_handler.GetUserData(); in IOHandlerInputComplete()
484 auto baton_sp = std::make_shared<BreakpointOptions::CommandBaton>( in IOHandlerInputComplete()
1260 std::vector<BreakpointOptions *> &bp_options_vec, in CollectDataForBreakpointCommandCallback()
1274 BreakpointOptions *bp_options, const char *function_name) { in SetBreakpointCommandCallbackFunction()
1284 BreakpointOptions *bp_options, in SetBreakpointCommandCallback()
1285 std::unique_ptr<BreakpointOptions::CommandData> &cmd_data_up) { in SetBreakpointCommandCallback()
1293 std::make_shared<BreakpointOptions::CommandBaton>(std::move(cmd_data_up)); in SetBreakpointCommandCallback()
1301 BreakpointOptions *bp_options, const char *command_body_text) { in SetBreakpointCommandCallback()
1314 std::make_shared<BreakpointOptions::CommandBaton>(std::move(data_ap)); in SetBreakpointCommandCallback()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBBreakpointLocation.cpp181 BreakpointOptions *bp_options = loc_sp->GetLocationOptions(); in SetScriptCallbackFunction()
203 BreakpointOptions *bp_options = loc_sp->GetLocationOptions(); in SetScriptCallbackBody()
227 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
228 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
H A DSBBreakpointName.cpp476 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
477 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
572 BreakpointOptions &bp_options = bp_name->GetOptions(); in SetScriptCallbackFunction()
596 BreakpointOptions &bp_options = bp_name->GetOptions(); in SetScriptCallbackBody()
H A DSBBreakpoint.cpp448 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
449 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
550 BreakpointOptions *bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackFunction()
570 BreakpointOptions *bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackBody()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h43 class BreakpointOptions; variable
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DTarget.h692 const BreakpointOptions &options,
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile89 SRCS+= Breakpoint/BreakpointOptions.cpp
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DTarget.cpp744 const BreakpointOptions &new_options, in ConfigureBreakpointName()