Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDebugNamesDWARFIndex.cpp203 llvm::Expected<DebugNames::Entry> entry_or = ni.getEntry(&entry_offset); in GetGlobalVariables() local
204 for (; entry_or; entry_or = ni.getEntry(&entry_offset)) { in GetGlobalVariables()
205 if (entry_or->tag() != DW_TAG_variable) in GetGlobalVariables()
208 if (!ProcessEntry(*entry_or, callback)) in GetGlobalVariables()
211 MaybeLogLookupError(entry_or.takeError(), ni, nte.getString()); in GetGlobalVariables()
236 llvm::Expected<DebugNames::Entry> entry_or = ni.getEntry(&entry_offset); in GetGlobalVariables() local
237 for (; entry_or; entry_or = ni.getEntry(&entry_offset)) { in GetGlobalVariables()
238 if (entry_or->tag() != DW_TAG_variable) in GetGlobalVariables()
240 if (entry_or->getCUOffset() != cu_offset) in GetGlobalVariables()
244 if (!ProcessEntry(*entry_or, callback)) in GetGlobalVariables()
[all …]