Lines Matching refs:ContentsOrErr
442 Expected<ArrayRef<uint8_t>> ContentsOrErr = getSectionContents(Sec); in crels() local
443 if (!ContentsOrErr) in crels()
444 return ContentsOrErr.takeError(); in crels()
445 return decodeCrel(*ContentsOrErr); in crels()
453 Expected<ArrayRef<uint8_t>> ContentsOrErr = getSectionContents(Sec); in android_relas() local
454 if (!ContentsOrErr) in android_relas()
455 return ContentsOrErr.takeError(); in android_relas()
456 ArrayRef<uint8_t> Content = *ContentsOrErr; in android_relas()
767 Expected<ArrayRef<uint8_t>> ContentsOrErr = EF.getSectionContents(Sec); in decodeBBAddrMapImpl() local
768 if (!ContentsOrErr) in decodeBBAddrMapImpl()
769 return ContentsOrErr.takeError(); in decodeBBAddrMapImpl()
770 ArrayRef<uint8_t> Content = *ContentsOrErr; in decodeBBAddrMapImpl()