Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwo.cpp151 void SymbolFileDWARFDwo::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileDWARFDwo
154 GetBaseSymbolFile().FindGlobalVariables(name, parent_decl_ctx, max_matches, in FindGlobalVariables()
H A DSymbolFileDWARFDwo.h56 void FindGlobalVariables(ConstString name,
H A DSymbolFileDWARFDebugMap.h111 void FindGlobalVariables(ConstString name,
115 void FindGlobalVariables(const RegularExpression &regex, uint32_t max_matches,
H A DSymbolFileDWARFDebugMap.cpp912 oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches, in PrivateFindGlobalVariables()
921 void SymbolFileDWARFDebugMap::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileDWARFDebugMap
929 oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches, in FindGlobalVariables()
952 void SymbolFileDWARFDebugMap::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileDWARFDebugMap
959 oso_dwarf->FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
H A DSymbolFileDWARF.h170 void FindGlobalVariables(ConstString name,
175 void FindGlobalVariables(const RegularExpression &regex, uint32_t max_matches,
/freebsd/contrib/llvm-project/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.cpp115 void SymbolFile::FindGlobalVariables(ConstString name, in FindGlobalVariables() function in SymbolFile
120 void SymbolFile::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables() function in SymbolFile
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBModuleDocstrings.i183 ) lldb::SBModule::FindGlobalVariables;
H A DSBTargetDocstrings.i298 ) lldb::SBTarget::FindGlobalVariables;
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleList.h312 void FindGlobalVariables(ConstString name, size_t max_matches,
326 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
H A DModule.h405 void FindGlobalVariables(ConstString name,
421 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolFileOnDemand.h133 FindGlobalVariables(lldb_private::ConstString name,
138 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
H A DSymbolFile.h292 virtual void FindGlobalVariables(ConstString name,
296 virtual void FindGlobalVariables(const RegularExpression &regex,
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.h124 FindGlobalVariables(lldb_private::ConstString name,
129 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
H A DSymbolFileCTF.cpp1087 void SymbolFileCTF::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileCTF
1104 void SymbolFileCTF::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileCTF
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h114 FindGlobalVariables(lldb_private::ConstString name,
119 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
/freebsd/contrib/llvm-project/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.cpp1895 SBValueList SBTarget::FindGlobalVariables(const char *name, in FindGlobalVariables() function in SBTarget
1904 target_sp->GetImages().FindGlobalVariables(ConstString(name), max_matches, in FindGlobalVariables()
1922 SBValueList SBTarget::FindGlobalVariables(const char *name, in FindGlobalVariables() function in SBTarget
1937 target_sp->GetImages().FindGlobalVariables(ConstString(name), max_matches, in FindGlobalVariables()
1941 target_sp->GetImages().FindGlobalVariables(RegularExpression(name_ref), in FindGlobalVariables()
1945 target_sp->GetImages().FindGlobalVariables( in FindGlobalVariables()
1951 target_sp->GetImages().FindGlobalVariables(RegularExpression(regexstr), in FindGlobalVariables()
1974 SBValueList sb_value_list(FindGlobalVariables(name, 1)); in FindFirstGlobalVariable()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBModule.h186 lldb::SBValueList FindGlobalVariables(lldb::SBTarget &target,
H A DSBTarget.h478 lldb::SBValueList FindGlobalVariables(const char *name, uint32_t max_matches);
503 lldb::SBValueList FindGlobalVariables(const char *name, uint32_t max_matches,
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp510 void ModuleList::FindGlobalVariables(ConstString name, size_t max_matches, in FindGlobalVariables() function in ModuleList
514 module_sp->FindGlobalVariables(name, CompilerDeclContext(), max_matches, in FindGlobalVariables()
519 void ModuleList::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables() function in ModuleList
524 module_sp->FindGlobalVariables(regex, max_matches, variable_list); in FindGlobalVariables()
H A DModule.cpp606 void Module::FindGlobalVariables(ConstString name, in FindGlobalVariables() function in Module
610 symbols->FindGlobalVariables(name, parent_decl_ctx, max_matches, variables); in FindGlobalVariables()
613 void Module::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables() function in Module
617 symbols->FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h87 void FindGlobalVariables(ConstString name, in FindGlobalVariables() function
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h106 void FindGlobalVariables(ConstString name,
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp634 module->FindGlobalVariables(name, namespace_decl, -1, vars); in FindGlobalVariable()
636 target.GetImages().FindGlobalVariables(name, -1, vars); in FindGlobalVariable()

12