Home
last modified time | relevance | path

Searched refs:exc_bp (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/tools/lldb-vscode/
DVSCode.cpp250 ExceptionBreakpoint *exc_bp = nullptr; in GetExceptionBPFromStopReason() local
257 exc_bp = GetExceptionBreakpoint(bp_id); in GetExceptionBPFromStopReason()
260 if (exc_bp == nullptr) in GetExceptionBPFromStopReason()
263 return exc_bp; in GetExceptionBPFromStopReason()
Dlldb-vscode.cpp850 ExceptionBreakpoint *exc_bp = g_vsc.GetExceptionBPFromStopReason(thread); in request_exceptionInfo() local
851 if (exc_bp) { in request_exceptionInfo()
852 EmplaceSafeString(body, "exceptionId", exc_bp->filter); in request_exceptionInfo()
853 EmplaceSafeString(body, "description", exc_bp->label); in request_exceptionInfo()
1378 for (const auto &exc_bp : g_vsc.exception_breakpoints) { in request_initialize() local
1379 filters.emplace_back(CreateExceptionBreakpointFilter(exc_bp)); in request_initialize()
2050 auto exc_bp = g_vsc.GetExceptionBreakpoint(std::string(filter)); in request_setExceptionBreakpoints() local
2051 if (exc_bp) { in request_setExceptionBreakpoints()
2052 exc_bp->SetBreakpoint(); in request_setExceptionBreakpoints()
2057 auto exc_bp = g_vsc.GetExceptionBreakpoint(filter); in request_setExceptionBreakpoints() local
[all …]
DJSONUtils.cpp852 ExceptionBreakpoint *exc_bp = g_vsc.GetExceptionBPFromStopReason(thread); in CreateThreadStopped() local
853 if (exc_bp) { in CreateThreadStopped()
855 EmplaceSafeString(body, "description", exc_bp->label); in CreateThreadStopped()