Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDebugNamesDWARFIndex.cpp109 llvm::Expected<DebugNames::Entry> entry_or = ni.getEntry(&entry_offset); in GetGlobalVariables() local
110 for (; entry_or; entry_or = ni.getEntry(&entry_offset)) { in GetGlobalVariables()
111 if (entry_or->tag() != DW_TAG_variable) in GetGlobalVariables()
114 if (!ProcessEntry(*entry_or, callback, in GetGlobalVariables()
118 MaybeLogLookupError(entry_or.takeError(), ni, nte.getString()); in GetGlobalVariables()
131 llvm::Expected<DebugNames::Entry> entry_or = ni.getEntry(&entry_offset); in GetGlobalVariables() local
132 for (; entry_or; entry_or = ni.getEntry(&entry_offset)) { in GetGlobalVariables()
133 if (entry_or->tag() != DW_TAG_variable) in GetGlobalVariables()
135 if (entry_or->getCUOffset() != cu_offset) in GetGlobalVariables()
138 if (!ProcessEntry(*entry_or, callback, in GetGlobalVariables()
[all …]