Searched defs:FindGlobalVariables (Results 1 - 8 of 8) sorted by relevance

/external/lldb/source/Symbol/
H A DSymbolVendor.cpp281 SymbolVendor::FindGlobalVariables (const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, size_t max_matches, VariableList& variables) function in class:SymbolVendor
288 return m_sym_file_ap->FindGlobalVariables(name, namespace_decl, append, max_matches, variables);
294 SymbolVendor::FindGlobalVariables (const RegularExpression& regex, bool append, size_t max_matches, VariableList& variables) function in class:SymbolVendor
301 return m_sym_file_ap->FindGlobalVariables(regex, append, max_matches, variables);
/external/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp330 SymbolFileSymtab::FindGlobalVariables(const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, VariableList& variables) function in class:SymbolFileSymtab
336 SymbolFileSymtab::FindGlobalVariables(const RegularExpression& regex, bool append, uint32_t max_matches, VariableList& variables) function in class:SymbolFileSymtab
/external/lldb/source/API/
H A DSBModule.cpp457 SBModule::FindGlobalVariables (SBTarget &target, const char *name, uint32_t max_matches) function in class:SBModule
464 const uint32_t match_count = module_sp->FindGlobalVariables (ConstString (name),
489 SBValueList sb_value_list(FindGlobalVariables(target, name, 1));
H A DSBTarget.cpp2243 SBTarget::FindGlobalVariables (const char *name, uint32_t max_matches) function in class:SBTarget
2252 const uint32_t match_count = target_sp->GetImages().FindGlobalVariables (ConstString (name),
2277 SBValueList sb_value_list(FindGlobalVariables(name, 1));
/external/lldb/source/Core/
H A DModuleList.cpp479 ModuleList::FindGlobalVariables (const ConstString &name, function in class:ModuleList
489 (*pos)->FindGlobalVariables (name, NULL, append, max_matches, variable_list);
496 ModuleList::FindGlobalVariables (const RegularExpression& regex, function in class:ModuleList
506 (*pos)->FindGlobalVariables (regex, append, max_matches, variable_list);
H A DModule.cpp540 Module::FindGlobalVariables (const ConstString &name, function in class:Module
548 return symbols->FindGlobalVariables(name, namespace_decl, append, max_matches, variables);
553 Module::FindGlobalVariables (const RegularExpression& regex, function in class:Module
560 return symbols->FindGlobalVariables(regex, append, max_matches, variables);
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp885 if (oso_dwarf->FindGlobalVariables(name, namespace_decl, true, max_matches, variables))
895 SymbolFileDWARFDebugMap::FindGlobalVariables (const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, VariableList& variables) function in class:SymbolFileDWARFDebugMap
910 const uint32_t oso_matches = oso_dwarf->FindGlobalVariables (name,
938 SymbolFileDWARFDebugMap::FindGlobalVariables (const RegularExpression& regex, bool append, uint32_t max_matches, VariableList& variables) function in class:SymbolFileDWARFDebugMap
952 const uint32_t oso_matches = oso_dwarf->FindGlobalVariables (regex,
H A DSymbolFileDWARF.cpp3084 SymbolFileDWARF::FindGlobalVariables (const ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, VariableList& variables) function in class:SymbolFileDWARF
3091 "SymbolFileDWARF::FindGlobalVariables (name=\"%s\", namespace_decl=%p, append=%u, max_matches=%u, variables)",
3196 "SymbolFileDWARF::FindGlobalVariables (name=\"%s\", namespace_decl=%p, append=%u, max_matches=%u, variables) => %u",
3207 SymbolFileDWARF::FindGlobalVariables(const RegularExpression& regex, bool append, uint32_t max_matches, VariableList& variables) function in class:SymbolFileDWARF
3214 "SymbolFileDWARF::FindGlobalVariables (regex=\"%s\", append=%u, max_matches=%u, variables)",

Completed in 299 milliseconds