reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Symbol/Block.h
  230   lldb::VariableListSP GetBlockVariableList(bool can_create);

References

tools/lldb/source/API/SBBlock.cpp
  258     VariableListSP variable_list_sp(block->GetBlockVariableList(true));
  315     VariableListSP variable_list_sp(block->GetBlockVariableList(true));
tools/lldb/source/API/SBFunction.cpp
  186     VariableListSP variable_list_sp = block.GetBlockVariableList(true);
tools/lldb/source/Core/FormatEntity.cpp
 1616                 variable_list_sp = inline_block->GetBlockVariableList(true);
 1622                 sc->function->GetBlock(true).GetBlockVariableList(true);
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
  158             function_block->GetBlockVariableList(true));
  188             function_block->GetBlockVariableList(true));
  230               function_block->GetBlockVariableList(true));
  257               function_block->GetBlockVariableList(true));
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
 3634                 variable_list_sp = block->GetBlockVariableList(can_create);
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
 1426   VariableListSP variables = block.GetBlockVariableList(false);
tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
 1065               local_variable_list_sp = block->GetBlockVariableList(false);
tools/lldb/source/Symbol/Block.cpp
  407   VariableList *block_var_list = GetBlockVariableList(can_create).get();
  438   VariableListSP variable_list_sp(GetBlockVariableList(can_create));