Home
last modified time | relevance | path

Searched refs:variablesReference (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DJSONUtils.h294 int64_t variablesReference,
463 llvm::json::Value CreateVariable(lldb::SBValue v, int64_t variablesReference,
H A DJSONUtils.cpp242 int64_t variablesReference, in CreateScope() argument
249 if (variablesReference == VARREF_LOCALS) { in CreateScope()
251 } else if (variablesReference == VARREF_REGS) { in CreateScope()
255 object.try_emplace("variablesReference", variablesReference); in CreateScope()
1035 llvm::json::Value CreateVariable(lldb::SBValue v, int64_t variablesReference, in CreateVariable() argument
1080 object.try_emplace("variablesReference", variablesReference); in CreateVariable()
H A Dlldb-vscode.cpp108 lldb::SBValueList *GetTopLevelScope(int64_t variablesReference) { in GetTopLevelScope() argument
109 switch (variablesReference) { in GetTopLevelScope()
2765 const auto variablesReference = in request_setVariable() local
2790 GetTopLevelScope(variablesReference)) { in request_setVariable()
2811 lldb::SBValue container = g_vsc.variables.GetVariable(variablesReference); in request_setVariable()
2931 const auto variablesReference = in request_variables() local
2940 if (lldb::SBValueList *top_scope = GetTopLevelScope(variablesReference)) { in request_variables()
2946 if (variablesReference == VARREF_REGS) { in request_variables()
2966 if (num_children == 0 && variablesReference == VARREF_LOCALS) { in request_variables()
3021 lldb::SBValue variable = g_vsc.variables.GetVariable(variablesReference); in request_variables()
[all …]
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/
H A Dvscode.py920 def request_variables(self, variablesReference, start=None, count=None): argument
921 args_dict = {'variablesReference': variablesReference}