Searched refs:InfoOr (Results 1 – 2 of 2) sorted by relevance
214 auto InfoOr = SendMessage<ProcessInfo>("qProcessInfo"); in qProcessInfo() local215 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() local226 if (!InfoOr) { in qRegisterInfos()227 consumeError(InfoOr.takeError()); in qRegisterInfos()230 m_register_infos.emplace_back(std::move(*InfoOr)); in qRegisterInfos()
1783 auto InfoOr = provider.GetAddressInfo(PHdr); in CreateSections() local1784 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() local1815 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 …]