Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DSourceBreakpoint.cpp15 : BreakpointBase(obj), line(GetUnsigned(obj, "line", 0)), in SourceBreakpoint()
16 column(GetUnsigned(obj, "column", 0)) {} in SourceBreakpoint()
H A DJSONUtils.h74 uint64_t GetUnsigned(const llvm::json::Object &obj, llvm::StringRef key,
76 uint64_t GetUnsigned(const llvm::json::Object *obj, llvm::StringRef key,
H A Dlldb-vscode.cpp594 GetUnsigned(arguments, "pid", LLDB_INVALID_PROCESS_ID); in request_attach()
606 const uint64_t timeout_seconds = GetUnsigned(arguments, "timeout", 30); in request_attach()
755 g_vsc.focus_tid = GetUnsigned(arguments, "threadId", LLDB_INVALID_THREAD_ID); in request_continue()
1656 const uint64_t timeout_seconds = GetUnsigned(arguments, "timeout", 30); in request_launch()
2480 const auto startFrame = GetUnsigned(arguments, "startFrame", 0); in request_stackTrace()
2481 const auto levels = GetUnsigned(arguments, "levels", 0); in request_stackTrace()
2756 GetUnsigned(arguments, "variablesReference", 0); in request_setVariable()
2776 const auto id_value = GetUnsigned(arguments, "id", UINT64_MAX); in request_setVariable()
2922 GetUnsigned(arguments, "variablesReference", 0); in request_variables()
H A DJSONUtils.cpp61 uint64_t GetUnsigned(const llvm::json::Object &obj, llvm::StringRef key, in GetUnsigned() function
68 uint64_t GetUnsigned(const llvm::json::Object *obj, llvm::StringRef key, in GetUnsigned() function
72 return GetUnsigned(*obj, key, fail_value); in GetUnsigned()
H A DVSCode.cpp373 const uint64_t frame_id = GetUnsigned(arguments, "frameId", UINT64_MAX); in GetLLDBFrame()