Home
last modified time | relevance | path

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

/external/llvm-project/lldb/unittests/tools/lldb-server/tests/
DTestClient.cpp214 auto InfoOr = SendMessage<ProcessInfo>("qProcessInfo"); in qProcessInfo() local
215 if (!InfoOr) in qProcessInfo()
216 return InfoOr.takeError(); in qProcessInfo()
217 m_process_info = std::move(*InfoOr); in qProcessInfo()
225 Expected<RegisterInfo> InfoOr = SendMessage<RegisterInfoParser>(Message); in qRegisterInfos() local
226 if (!InfoOr) { in qRegisterInfos()
227 consumeError(InfoOr.takeError()); in qRegisterInfos()
230 m_register_infos.emplace_back(std::move(*InfoOr)); in qRegisterInfos()
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp1783 auto InfoOr = provider.GetAddressInfo(PHdr); in CreateSections() local
1784 if (!InfoOr) in CreateSections()
1791 InfoOr->GetRangeBase(), InfoOr->GetByteSize(), PHdr.p_offset, in CreateSections()
1797 provider.AddSegment(*InfoOr, std::move(Segment)); in CreateSections()
1814 auto InfoOr = provider.GetAddressInfo(header); in CreateSections() local
1815 if (!InfoOr) in CreateSections()
1827 InfoOr->Segment, GetModule(), // Module to which this section belongs. in CreateSections()
1833 InfoOr->Range.GetRangeBase(), // VM address. in CreateSections()
1834 InfoOr->Range.GetByteSize(), // VM size in bytes of this section. in CreateSections()
1843 (InfoOr->Segment ? InfoOr->Segment->GetChildren() : *m_sections_up) in CreateSections()
[all …]