Searched refs:FindGlobalVariables (Results 1 - 25 of 29) sorted by relevance

12

/external/lldb/test/python_api/default-constructor/
H A Dsb_module.py20 obj.FindGlobalVariables(lldb.SBTarget(), "my_global_var", 1)
H A Dsb_target.py30 obj.FindGlobalVariables("my_global_var", 1)
/external/lldb/test/python_api/value/
H A DTestValueAPI.py65 list = target.FindGlobalVariables('days_of_week', 1)
72 list = target.FindGlobalVariables('weekdays', 1)
79 list = target.FindGlobalVariables('g_table', 1)
/external/lldb/examples/python/
H A Dglobals.py40 global_variable_list = module.FindGlobalVariables (target, global_name, lldb.UINT32_MAX)
/external/lldb/include/lldb/Symbol/
H A DSymbolFile.h136 virtual uint32_t FindGlobalVariables (const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, VariableList& variables) = 0;
137 virtual uint32_t FindGlobalVariables (const RegularExpression& regex, bool append, uint32_t max_matches, VariableList& variables) = 0;
H A DSymbolVendor.h95 FindGlobalVariables (const ConstString &name,
102 FindGlobalVariables (const RegularExpression& regex,
/external/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h91 FindGlobalVariables(const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
94 FindGlobalVariables(const lldb_private::RegularExpression& regex, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
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/include/lldb/API/
H A DSBModule.h176 FindGlobalVariables (lldb::SBTarget &target,
H A DSBTarget.h613 FindGlobalVariables (const char *name,
/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/test/lang/objc/foundation/
H A DTestObjectDescriptionAPI.py2 Test SBValue.GetObjectDescription() with the value from SBTarget.FindGlobalVariables().
20 """Exercise SBTaget.FindGlobalVariables() API."""
31 """Exercise SBTarget.FindGlobalVariables() API."""
45 """Exercise SBTaget.FindGlobalVariables() followed by SBValue.GetObjectDescription()."""
76 value_list2 = target.FindGlobalVariables('my_global_str', 3)
/external/lldb/include/lldb/Core/
H A DModule.h376 FindGlobalVariables (const ConstString &name,
405 FindGlobalVariables (const RegularExpression& regex,
H A DModuleList.h304 FindGlobalVariables (const ConstString &name,
332 FindGlobalVariables (const RegularExpression& regex,
/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/test/python_api/module_section/
H A DTestModuleAndSection.py95 exe_module.FindGlobalVariables(target, None, 1)
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.h83 virtual uint32_t FindGlobalVariables (const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
84 virtual uint32_t FindGlobalVariables (const lldb_private::RegularExpression& regex, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
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.h118 virtual uint32_t FindGlobalVariables(const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
119 virtual uint32_t FindGlobalVariables(const lldb_private::RegularExpression& regex, bool append, uint32_t max_matches, lldb_private::VariableList& variables);
/external/lldb/test/python_api/target/
H A DTestTargetAPI.py19 """Exercise SBTaget.FindGlobalVariables() API."""
35 """Exercise SBTarget.FindGlobalVariables() API."""
113 """Exercise SBTaget.FindGlobalVariables() API."""
137 value_list = target.FindGlobalVariables('my_global_var_of_char_type', 3)
149 # While we are at it, let's also exercise the similar SBModule.FindGlobalVariables() API.
152 value_list = m.FindGlobalVariables(target, 'my_global_var_of_char_type', 3)
/external/lldb/scripts/Python/interface/
H A DSBModule.i266 ") FindGlobalVariables;
268 FindGlobalVariables (lldb::SBTarget &target,
H A DSBTarget.i608 ") FindGlobalVariables;
610 FindGlobalVariables (const char *name,
/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);

Completed in 435 milliseconds

12