Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/lldb/test/API/python_api/value/
H A DTestValueAPI.py55 list = target.FindGlobalVariables('days_of_week', 1)
76 list = target.FindGlobalVariables('weekdays', 1)
83 list = target.FindGlobalVariables('g_table', 1)
/llvm-project-15.0.7/lldb/source/Symbol/
H A DSymbolFileOnDemand.cpp307 void SymbolFileOnDemand::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables() function in SymbolFileOnDemand
315 return m_sym_file_impl->FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
318 void SymbolFileOnDemand::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileOnDemand
343 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
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_module.py21 obj.FindGlobalVariables(lldb.SBTarget(), "my_global_var", 1)
H A Dsb_target.py30 obj.FindGlobalVariables("my_global_var", 1)
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DSymbolFileOnDemand.h129 FindGlobalVariables(lldb_private::ConstString name,
134 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
H A DSymbolFile.h230 virtual void FindGlobalVariables(ConstString name,
234 virtual void FindGlobalVariables(const RegularExpression &regex,
/llvm-project-15.0.7/lldb/test/API/macosx/builtin-debugtrap/
H A DTestBuiltinDebugTrap.py36 list = target.FindGlobalVariables("global", 1, lldb.eMatchTypeNormal)
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DModuleList.h290 void FindGlobalVariables(ConstString name, size_t max_matches,
304 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
H A DModule.h379 void FindGlobalVariables(ConstString name,
395 void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
/llvm-project-15.0.7/lldb/test/API/lang/objc/foundation/
H A DTestObjectDescriptionAPI.py64 value_list2 = target.FindGlobalVariables('my_global_str', 3)
/llvm-project-15.0.7/lldb/examples/python/
H A Dglobals.py43 global_variable_list = module.FindGlobalVariables(
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h113 FindGlobalVariables(lldb_private::ConstString name,
118 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
/llvm-project-15.0.7/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.i311 A list of matched variables in an SBValueList.") FindGlobalVariables;
313 FindGlobalVariables (lldb::SBTarget &target,
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.h105 FindGlobalVariables(lldb_private::ConstString name,
109 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
H A DSymbolFileDWARFDebugMap.cpp843 oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches, in PrivateFindGlobalVariables()
852 void SymbolFileDWARFDebugMap::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileDWARFDebugMap
860 oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, max_matches, in FindGlobalVariables()
883 void SymbolFileDWARFDebugMap::FindGlobalVariables( in FindGlobalVariables() function in SymbolFileDWARFDebugMap
890 oso_dwarf->FindGlobalVariables(regex, max_matches, variables); in FindGlobalVariables()
H A DSymbolFileDWARF.h172 FindGlobalVariables(lldb_private::ConstString name,
177 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
/llvm-project-15.0.7/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,
/llvm-project-15.0.7/lldb/test/API/python_api/module_section/
H A DTestModuleAndSection.py97 exe_module.FindGlobalVariables(target, None, 1)
/llvm-project-15.0.7/lldb/source/Core/
H A DModuleList.cpp487 void ModuleList::FindGlobalVariables(ConstString name, size_t max_matches, in FindGlobalVariables() function in ModuleList
491 module_sp->FindGlobalVariables(name, CompilerDeclContext(), max_matches, in FindGlobalVariables()
496 void ModuleList::FindGlobalVariables(const RegularExpression &regex, in FindGlobalVariables() function in ModuleList
501 module_sp->FindGlobalVariables(regex, max_matches, variable_list); in FindGlobalVariables()
/llvm-project-15.0.7/lldb/test/API/python_api/target/
H A DTestTargetAPI.py257 value_list = target.FindGlobalVariables(
274 value_list = m.FindGlobalVariables(

12