Home
last modified time | relevance | path

Searched refs:g_vsc (Results 1 – 9 of 9) sorted by relevance

/openbsd/gnu/llvm/lldb/tools/lldb-vscode/
H A Dlldb-vscode.cpp127 if (g_vsc.log) in AcceptConnection()
137 if (g_vsc.log) in AcceptConnection()
147 if (g_vsc.log) in AcceptConnection()
279 if (g_vsc.log) in SendThreadStoppedEvent()
286 if (g_vsc.log) in SendThreadStoppedEvent()
629 g_vsc.SetTarget(g_vsc.CreateTargetFromArguments(*arguments, status)); in request_attach()
666 g_vsc.target = g_vsc.debugger.GetSelectedTarget(); in request_attach()
1457 g_vsc.debugger = in request_initialize()
1740 g_vsc.target = g_vsc.debugger.GetSelectedTarget(); in request_launch()
3203 if (g_vsc.log) in SetupStdoutStderrRedirection()
[all …]
H A DJSONUtils.cpp627 auto addr_srcref = g_vsc.addr_to_source_ref.find(low_pc); in CreateSource()
628 if (addr_srcref != g_vsc.addr_to_source_ref.end()) { in CreateSource()
634 insts = function.GetInstructions(g_vsc.target); in CreateSource()
641 if (addr_srcref != g_vsc.addr_to_source_ref.end()) { in CreateSource()
647 insts = symbol.GetInstructions(g_vsc.target); in CreateSource()
660 const char *m = inst.GetMnemonic(g_vsc.target); in CreateSource()
661 const char *o = inst.GetOperands(g_vsc.target); in CreateSource()
662 const char *c = inst.GetComment(g_vsc.target); in CreateSource()
693 g_vsc.source_map[sourceReference] = std::move(source); in CreateSource()
694 g_vsc.addr_to_source_ref[low_pc] = sourceReference; in CreateSource()
[all …]
H A DExceptionBreakpoint.cpp20 bp = g_vsc.target.BreakpointCreateForException(language, catch_value, in SetBreakpoint()
30 g_vsc.target.BreakpointDelete(bp.GetID()); in ClearBreakpoint()
H A DVSCode.cpp30 VSCode g_vsc; variable
385 g_vsc.variables.locals.GetSize(), false)); in CreateTopLevelScopes()
387 g_vsc.variables.globals.GetSize(), false)); in CreateTopLevelScopes()
389 g_vsc.variables.registers.GetSize(), false)); in CreateTopLevelScopes()
H A DFunctionBreakpoint.cpp20 bp = g_vsc.target.BreakpointCreateByName(functionName.c_str()); in SetBreakpoint()
H A DSourceBreakpoint.cpp19 bp = g_vsc.target.BreakpointCreateByLocation(source_path.str().c_str(), line); in SetBreakpoint()
H A DBreakpointBase.cpp273 g_vsc.SendOutput(OutputType::Console, message); in NotifyLogMessageError()
307 g_vsc.SendOutput(OutputType::Console, output.c_str()); in BreakpointHitCallback()
H A DLLDBUtils.cpp19 lldb::SBCommandInterpreter interp = g_vsc.debugger.GetCommandInterpreter(); in RunLLDBCommands()
H A DVSCode.h275 extern VSCode g_vsc;