Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp280 std::unique_ptr<CommandData> cmd_data_up; in CreateFromStructuredData() local
286 cmd_data_up = CommandData::CreateFromStructuredData(*cmds_dict, cmds_error); in CreateFromStructuredData()
298 if (cmd_data_up) { in CreateFromStructuredData()
299 if (cmd_data_up->interpreter == eScriptLanguageNone) in CreateFromStructuredData()
300 bp_options->SetCommandDataCallback(cmd_data_up); in CreateFromStructuredData()
308 if (interp->GetLanguage() != cmd_data_up->interpreter) { in CreateFromStructuredData()
311 ScriptInterpreter::LanguageToString(cmd_data_up->interpreter) in CreateFromStructuredData()
317 interp->SetBreakpointCommandCallback(*bp_options, cmd_data_up); in CreateFromStructuredData()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointLocation.cpp285 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands() local
288 loc_sp->GetLocationOptions().SetCommandDataCallback(cmd_data_up); in SetCommandLineCommands()
H A DSBBreakpointName.cpp473 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands() local
476 bp_name->GetOptions().SetCommandDataCallback(cmd_data_up); in SetCommandLineCommands()
H A DSBBreakpoint.cpp490 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands() local
493 bkpt_sp->GetOptions().SetCommandDataCallback(cmd_data_up); in SetCommandLineCommands()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1196 std::unique_ptr<BreakpointOptions::CommandData> &cmd_data_up) { in SetBreakpointCommandCallback() argument
1198 error = GenerateBreakpointCommandCallbackData(cmd_data_up->user_source, in SetBreakpointCommandCallback()
1199 cmd_data_up->script_source, in SetBreakpointCommandCallback()
1206 std::make_shared<BreakpointOptions::CommandBaton>(std::move(cmd_data_up)); in SetBreakpointCommandCallback()