/openbsd-src/gnu/llvm/lldb/bindings/interface/ |
H A D | SBFrame.i | 215 target's default.") GetVariables; 217 GetVariables (bool arguments, 223 GetVariables (bool arguments, 230 GetVariables (const lldb::SBVariablesOptions& options); 301 return self.GetVariables(True,True,True,True) 311 return self.GetVariables(True,False,False,False) 314 return self.GetVariables(False,True,False,False) 317 return self.GetVariables(False,False,True,False)
|
H A D | SBBlock.i | 91 GetVariables (lldb::SBFrame& frame, 98 GetVariables (lldb::SBTarget& target,
|
/openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
H A D | SBFrame.h | 140 lldb::SBValueList GetVariables(bool arguments, bool locals, bool statics, 143 lldb::SBValueList GetVariables(bool arguments, bool locals, bool statics, 147 lldb::SBValueList GetVariables(const lldb::SBVariablesOptions &options);
|
H A D | SBBlock.h | 57 lldb::SBValueList GetVariables(lldb::SBFrame &frame, bool arguments, 61 lldb::SBValueList GetVariables(lldb::SBTarget &target, bool arguments,
|
/openbsd-src/gnu/llvm/lldb/examples/python/ |
H A D | shadow.py | 33 block_vars = block.GetVariables(frame, True, True, True, 0)
|
H A D | cmdtemplate.py | 120 variables_list = frame.GetVariables(
|
H A D | lldbtk.py | 65 'children': self.frame.GetVariables( 74 variables = self.frame.GetVariables(True, True, True, True)
|
/openbsd-src/gnu/llvm/lldb/source/API/ |
H A D | SBBlock.cpp | 232 lldb::SBValueList SBBlock::GetVariables(lldb::SBFrame &frame, bool arguments, in GetVariables() function in SBBlock 286 lldb::SBValueList SBBlock::GetVariables(lldb::SBTarget &target, bool arguments, in GetVariables() function in SBBlock
|
H A D | SBFrame.cpp | 729 SBValueList SBFrame::GetVariables(bool arguments, bool locals, bool statics, in GetVariables() function in SBFrame 753 value_list = GetVariables(options); in GetVariables() 758 lldb::SBValueList SBFrame::GetVariables(bool arguments, bool locals, in GetVariables() function in SBFrame 777 return GetVariables(options); in GetVariables() 780 SBValueList SBFrame::GetVariables(const lldb::SBVariablesOptions &options) { in GetVariables() function in SBFrame
|
/openbsd-src/gnu/llvm/clang/utils/ |
H A D | ClangDataFormat.py | 128 value_list = frame.GetVariables(True, True, True, True)
|
/openbsd-src/gnu/llvm/lldb/examples/darwin/heap_find/ |
H A D | heap.py | 385 variables = frame.GetVariables(True, True, True, True) 446 variables = frame.GetVariables(True, True, True, True)
|
/openbsd-src/gnu/llvm/lldb/utils/lui/ |
H A D | lldbutil.py | 861 vars = frame.GetVariables(True, False, False, True) # type of SBValueList
|
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/ |
H A D | lldb-vscode.cpp | 1936 g_vsc.variables.locals = frame.GetVariables(/*arguments=*/true, in request_scopes() 1940 g_vsc.variables.globals = frame.GetVariables(/*arguments=*/false, in request_scopes()
|
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
H A D | lldbutil.py | 1252 vars = frame.GetVariables(True, False, False, True) # type of SBValueList
|