Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDSymbolVendor.cpp296 SymbolVendor::FindGlobalVariables (const ConstString &name, const ClangNamespaceDecl *namespace_dec… in FindGlobalVariables() function in SymbolVendor
303 … return m_sym_file_ap->FindGlobalVariables(name, namespace_decl, append, max_matches, variables); in FindGlobalVariables()
309 SymbolVendor::FindGlobalVariables (const RegularExpression& regex, bool append, size_t max_matches,… in FindGlobalVariables() function in SymbolVendor
316 return m_sym_file_ap->FindGlobalVariables(regex, append, max_matches, variables); in FindGlobalVariables()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Symbol/
HDSymbolFile.h137 …virtual uint32_t FindGlobalVariables (const ConstString &name, const ClangNamespaceDecl *na…
138 …virtual uint32_t FindGlobalVariables (const RegularExpression& regex, bool append, uint32_t…
HDSymbolVendor.h99 FindGlobalVariables (const ConstString &name,
106 FindGlobalVariables (const RegularExpression& regex,
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/
HDSymbolFileSymtab.h94FindGlobalVariables(const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl …
97FindGlobalVariables(const lldb_private::RegularExpression& regex, bool append, uint32_t max_matche…
HDSymbolFileSymtab.cpp336 SymbolFileSymtab::FindGlobalVariables(const ConstString &name, const ClangNamespaceDecl *namespace_… in FindGlobalVariables() function in SymbolFileSymtab
342 SymbolFileSymtab::FindGlobalVariables(const RegularExpression& regex, bool append, uint32_t max_mat… in FindGlobalVariables() function in SymbolFileSymtab
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDModuleList.h316 FindGlobalVariables (const ConstString &name,
344 FindGlobalVariables (const RegularExpression& regex,
HDModule.h415 FindGlobalVariables (const ConstString &name,
444 FindGlobalVariables (const RegularExpression& regex,
/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBModule.cpp472 SBModule::FindGlobalVariables (SBTarget &target, const char *name, uint32_t max_matches) in FindGlobalVariables() function in SBModule
479 const uint32_t match_count = module_sp->FindGlobalVariables (ConstString (name), in FindGlobalVariables()
504 SBValueList sb_value_list(FindGlobalVariables(target, name, 1)); in FindFirstGlobalVariable()
HDSBTarget.cpp1911 SBTarget::FindGlobalVariables (const char *name, uint32_t max_matches) in FindGlobalVariables() function in SBTarget
1920 … const uint32_t match_count = target_sp->GetImages().FindGlobalVariables (ConstString (name), in FindGlobalVariables()
1943 SBTarget::FindGlobalVariables(const char *name, uint32_t max_matches, MatchType matchtype) in FindGlobalVariables() function in SBTarget
1958 match_count = target_sp->GetImages().FindGlobalVariables(ConstString(name), in FindGlobalVariables()
1964 match_count = target_sp->GetImages().FindGlobalVariables(RegularExpression(name), in FindGlobalVariables()
1971 … match_count = target_sp->GetImages().FindGlobalVariables(RegularExpression(regexstr.c_str()), in FindGlobalVariables()
2000 SBValueList sb_value_list(FindGlobalVariables(name, 1)); in FindFirstGlobalVariable()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/API/
HDSBTarget.h474 FindGlobalVariables (const char *name,
506 FindGlobalVariables(const char *name,
HDSBModule.h212 FindGlobalVariables (lldb::SBTarget &target,
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
HDSymbolFileDWARFDebugMap.h84 …uint32_t FindGlobalVariables (const lldb_private::ConstString &name, const lldb_private::Cl…
85 …uint32_t FindGlobalVariables (const lldb_private::RegularExpression& regex, bool append, ui…
HDSymbolFileDWARFDebugMap.cpp891 … if (oso_dwarf->FindGlobalVariables(name, namespace_decl, true, max_matches, variables)) in PrivateFindGlobalVariables()
901 SymbolFileDWARFDebugMap::FindGlobalVariables (const ConstString &name, const ClangNamespaceDecl *na… in FindGlobalVariables() function in SymbolFileDWARFDebugMap
915 const uint32_t oso_matches = oso_dwarf->FindGlobalVariables (name, in FindGlobalVariables()
946 SymbolFileDWARFDebugMap::FindGlobalVariables (const RegularExpression& regex, bool append, uint32_t… in FindGlobalVariables() function in SymbolFileDWARFDebugMap
958 const uint32_t oso_matches = oso_dwarf->FindGlobalVariables (regex, in FindGlobalVariables()
HDSymbolFileDWARF.h120 …virtual uint32_t FindGlobalVariables(const lldb_private::ConstString &name, const lldb_priv…
121 …virtual uint32_t FindGlobalVariables(const lldb_private::RegularExpression& regex, bool app…
HDSymbolFileDWARF.cpp3384 SymbolFileDWARF::FindGlobalVariables (const ConstString &name, const lldb_private::ClangNamespaceDe… in FindGlobalVariables() function in SymbolFileDWARF
3503 SymbolFileDWARF::FindGlobalVariables(const RegularExpression& regex, bool append, uint32_t max_matc… in FindGlobalVariables() function in SymbolFileDWARF
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDModuleList.cpp526 ModuleList::FindGlobalVariables (const ConstString &name, in FindGlobalVariables() function in ModuleList
536 (*pos)->FindGlobalVariables (name, NULL, append, max_matches, variable_list); in FindGlobalVariables()
543 ModuleList::FindGlobalVariables (const RegularExpression& regex, in FindGlobalVariables() function in ModuleList
553 (*pos)->FindGlobalVariables (regex, append, max_matches, variable_list); in FindGlobalVariables()
HDModule.cpp708 Module::FindGlobalVariables (const ConstString &name, in FindGlobalVariables() function in Module
716 return symbols->FindGlobalVariables(name, namespace_decl, append, max_matches, variables); in FindGlobalVariables()
721 Module::FindGlobalVariables (const RegularExpression& regex, in FindGlobalVariables() function in Module
728 return symbols->FindGlobalVariables(regex, append, max_matches, variables); in FindGlobalVariables()
/NextBSD/contrib/llvm/tools/lldb/source/Expression/
HDClangExpressionDeclMap.cpp873 module->FindGlobalVariables (name, namespace_decl, true, -1, vars); in FindGlobalVariable()
875 target.GetImages().FindGlobalVariables(name, true, -1, vars); in FindGlobalVariable()
/NextBSD/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectWatchpoint.cpp978 return target->GetImages().FindGlobalVariables (ConstString(name), in GetVariableCallback()
HDCommandObjectTarget.cpp844 return target->GetImages().FindGlobalVariables (ConstString(name), in GetVariableCallback()
927 matches = target->GetImages().FindGlobalVariables (regex, in DoExecute()
1074 … sc.module_sp->FindGlobalVariables(all_globals_regex, append, UINT32_MAX, variable_list); in DoExecute()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
HDRenderScriptRuntime.cpp897 m_module->m_module->FindGlobalVariables(m_name, nullptr, true, 1U, var_list); in Dump()