Home
last modified time | relevance | path

Searched refs:cmd_data_up (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp313 std::unique_ptr<CommandData> cmd_data_up; in CreateFromStructuredData() local
319 cmd_data_up = CommandData::CreateFromStructuredData(*cmds_dict, cmds_error); in CreateFromStructuredData()
331 if (cmd_data_up.get()) { in CreateFromStructuredData()
332 if (cmd_data_up->interpreter == eScriptLanguageNone) in CreateFromStructuredData()
333 bp_options->SetCommandDataCallback(cmd_data_up); in CreateFromStructuredData()
342 if (interp->GetLanguage() != cmd_data_up->interpreter) { in CreateFromStructuredData()
345 ScriptInterpreter::LanguageToString(cmd_data_up->interpreter) in CreateFromStructuredData()
351 interp->SetBreakpointCommandCallback(bp_options.get(), cmd_data_up); in CreateFromStructuredData()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBBreakpointLocation.cpp227 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands() local
230 loc_sp->GetLocationOptions()->SetCommandDataCallback(cmd_data_up); in SetCommandLineCommands()
H A DSBBreakpointName.cpp476 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands() local
479 bp_name->GetOptions().SetCommandDataCallback(cmd_data_up); in SetCommandLineCommands()
H A DSBBreakpoint.cpp448 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands() local
451 bkpt_sp->GetOptions()->SetCommandDataCallback(cmd_data_up); in SetCommandLineCommands()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1285 std::unique_ptr<BreakpointOptions::CommandData> &cmd_data_up) { in SetBreakpointCommandCallback() argument
1287 error = GenerateBreakpointCommandCallbackData(cmd_data_up->user_source, in SetBreakpointCommandCallback()
1288 cmd_data_up->script_source); in SetBreakpointCommandCallback()
1293 std::make_shared<BreakpointOptions::CommandBaton>(std::move(cmd_data_up)); in SetBreakpointCommandCallback()