Home
last modified time | relevance | path

Searched refs:FindGlobalVariables (Results 1 – 25 of 30) sorted by relevance

12

/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DSymbolFileOnDemand.cpp317 void SymbolFileOnDemand::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables() function in SymbolFileOnDemand
325 return m_sym_file_impl->FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
328 void SymbolFileOnDemand::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileOnDemand
353 return m_sym_file_impl->FindGlobalVariables(name, parent_decl_ctx, in FindGlobalVariables()
H A DSymbolFile.cpp114 void SymbolFile::FindGlobalVariables(ConstString name, in FindGlobalVariables() function in SymbolFile
119 void SymbolFile::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables() function in SymbolFile
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DModuleList.h291 void FindGlobalVariables(ConstString name, size_t max_matches,
305 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
H A DModule.h400 void FindGlobalVariables(ConstString name,
416 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dglobals.py42 global_variable_list = module.FindGlobalVariables(
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DSymbolFileOnDemand.h133 FindGlobalVariables(lldb_private::ConstString name,
138 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
H A DSymbolFile.h276 virtual void FindGlobalVariables(ConstString name,
280 virtual void FindGlobalVariables(const RegularExpression &regex,
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h114 FindGlobalVariables(lldb_private::ConstString name,
119 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
H A DSymbolFilePDB.cpp1116 void SymbolFilePDB::FindGlobalVariables( in FindGlobalVariables() function in SymbolFilePDB
1158 void SymbolFilePDB::FindGlobalVariables( in FindGlobalVariables() function in SymbolFilePDB
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBTarget.i477 A list of matched variables in an SBValueList.") FindGlobalVariables;
479 FindGlobalVariables (const char *name,
496 FindGlobalVariables(const char *name,
H A DSBModule.i314 A list of matched variables in an SBValueList.") FindGlobalVariables;
316 FindGlobalVariables (lldb::SBTarget &target,
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBModule.cpp404 SBValueList SBModule::FindGlobalVariables(SBTarget &target, const char *name, in FindGlobalVariables() function in SBModule
412 module_sp->FindGlobalVariables(ConstString(name), CompilerDeclContext(), in FindGlobalVariables()
430 SBValueList sb_value_list(FindGlobalVariables(target, name, 1)); in FindFirstGlobalVariable()
H A DSBTarget.cpp1844 SBValueList SBTarget::FindGlobalVariables(const char *name, in FindGlobalVariables() function in SBTarget
1853 target_sp->GetImages().FindGlobalVariables(ConstString(name), max_matches, in FindGlobalVariables()
1871 SBValueList SBTarget::FindGlobalVariables(const char *name, in FindGlobalVariables() function in SBTarget
1886 target_sp->GetImages().FindGlobalVariables(ConstString(name), max_matches, in FindGlobalVariables()
1890 target_sp->GetImages().FindGlobalVariables(RegularExpression(name_ref), in FindGlobalVariables()
1895 target_sp->GetImages().FindGlobalVariables(RegularExpression(regexstr), in FindGlobalVariables()
1918 SBValueList sb_value_list(FindGlobalVariables(name, 1)); in FindFirstGlobalVariable()
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBModule.h186 lldb::SBValueList FindGlobalVariables(lldb::SBTarget &target,
H A DSBTarget.h433 lldb::SBValueList FindGlobalVariables(const char *name, uint32_t max_matches);
458 lldb::SBValueList FindGlobalVariables(const char *name, uint32_t max_matches,
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.h111 FindGlobalVariables(lldb_private::ConstString name,
115 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
H A DSymbolFileDWARFDebugMap.cpp895 oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches, in PrivateFindGlobalVariables()
904 void SymbolFileDWARFDebugMap::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileDWARFDebugMap
912 oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches, in FindGlobalVariables()
935 void SymbolFileDWARFDebugMap::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileDWARFDebugMap
942 oso_dwarf->FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
H A DSymbolFileDWARF.h176 FindGlobalVariables(lldb_private::ConstString name,
181 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DModuleList.cpp492 void ModuleList::FindGlobalVariables(ConstString name, size_t max_matches, in FindGlobalVariables() function in ModuleList
496 module_sp->FindGlobalVariables(name, CompilerDeclContext(), max_matches, in FindGlobalVariables()
501 void ModuleList::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables() function in ModuleList
506 module_sp->FindGlobalVariables(regex, max_matches, variable_list); in FindGlobalVariables()
H A DModule.cpp609 void Module::FindGlobalVariables(ConstString name, in FindGlobalVariables() function in Module
613 symbols->FindGlobalVariables(name, parent_decl_ctx, max_matches, variables); in FindGlobalVariables()
616 void Module::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables() function in Module
620 symbols->FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h87 void FindGlobalVariables(ConstString name, in FindGlobalVariables() function
/openbsd-src/gnu/llvm/lldb/tools/lldb-test/
H A Dlldb-test.cpp453 Symfile.FindGlobalVariables(ConstString(Context), CompilerDeclContext(), in getDeclContext()
613 Symfile.FindGlobalVariables(RE, UINT32_MAX, List); in findVariables()
638 Symfile.FindGlobalVariables(ConstString(Name), ContextPtr, UINT32_MAX, List); in findVariables()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h106 void FindGlobalVariables(ConstString name,
/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp640 module->FindGlobalVariables(name, namespace_decl, -1, vars); in FindGlobalVariable()
642 target.GetImages().FindGlobalVariables(name, -1, vars); in FindGlobalVariable()
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp577 module->FindGlobalVariables(sym_name, CompilerDeclContext(), 1U, var_list); in GetSymbolDeclarationFromAddress()

12