Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DJSONUtils.h292 int64_t variablesReference,
461 llvm::json::Value CreateVariable(lldb::SBValue v, int64_t variablesReference,
H A DJSONUtils.cpp239 int64_t variablesReference, in CreateScope() argument
246 if (variablesReference == VARREF_LOCALS) { in CreateScope()
248 } else if (variablesReference == VARREF_REGS) { in CreateScope()
252 object.try_emplace("variablesReference", variablesReference); in CreateScope()
1032 llvm::json::Value CreateVariable(lldb::SBValue v, int64_t variablesReference, in CreateVariable() argument
1077 object.try_emplace("variablesReference", variablesReference); in CreateVariable()
H A Dlldb-vscode.cpp105 lldb::SBValueList *GetTopLevelScope(int64_t variablesReference) { in GetTopLevelScope() argument
106 switch (variablesReference) { in GetTopLevelScope()
2755 const auto variablesReference = in request_setVariable() local
2780 GetTopLevelScope(variablesReference)) { in request_setVariable()
2801 lldb::SBValue container = g_vsc.variables.GetVariable(variablesReference); in request_setVariable()
2921 const auto variablesReference = in request_variables() local
2930 if (lldb::SBValueList *top_scope = GetTopLevelScope(variablesReference)) { in request_variables()
2967 lldb::SBValue variable = g_vsc.variables.GetVariable(variablesReference); in request_variables()
2977 g_vsc.variables.IsPermanentVariableReference(variablesReference); in request_variables()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/
H A Dvscode.py909 def request_variables(self, variablesReference, start=None, count=None): argument
910 args_dict = {'variablesReference': variablesReference}