Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/tools/lldb-vscode/
DVSCode.cpp351 ExceptionBreakpoint *exc_bp = nullptr; in GetExceptionBPFromStopReason() local
358 exc_bp = GetExceptionBreakpoint(bp_id); in GetExceptionBPFromStopReason()
361 if (exc_bp == nullptr) in GetExceptionBPFromStopReason()
364 return exc_bp; in GetExceptionBPFromStopReason()
Dlldb-vscode.cpp906 ExceptionBreakpoint *exc_bp = g_vsc.GetExceptionBPFromStopReason(thread); in request_exceptionInfo() local
907 if (exc_bp) { in request_exceptionInfo()
908 EmplaceSafeString(body, "exceptionId", exc_bp->filter); in request_exceptionInfo()
909 EmplaceSafeString(body, "description", exc_bp->label); in request_exceptionInfo()
1482 for (const auto &exc_bp : g_vsc.exception_breakpoints) { in request_initialize() local
1483 filters.emplace_back(CreateExceptionBreakpointFilter(exc_bp)); in request_initialize()
2184 auto exc_bp = g_vsc.GetExceptionBreakpoint(std::string(filter)); in request_setExceptionBreakpoints() local
2185 if (exc_bp) { in request_setExceptionBreakpoints()
2186 exc_bp->SetBreakpoint(); in request_setExceptionBreakpoints()
2191 auto exc_bp = g_vsc.GetExceptionBreakpoint(filter); in request_setExceptionBreakpoints() local
[all …]
DJSONUtils.cpp887 ExceptionBreakpoint *exc_bp = g_vsc.GetExceptionBPFromStopReason(thread); in CreateThreadStopped() local
888 if (exc_bp) { in CreateThreadStopped()
890 EmplaceSafeString(body, "description", exc_bp->label); in CreateThreadStopped()