Home | History | Annotate | Download | only in Raw

Lines Matching refs:EC

32   if (auto EC = Stream.readObject(H))
33 return EC;
44 if (auto EC = Stream.readStreamRef(NamesBuffer, H->ByteSize))
45 return joinErrors(std::move(EC),
50 if (auto EC = Stream.readObject(HashCount))
51 return EC;
53 if (auto EC = Stream.readArray(IDs, *HashCount))
54 return joinErrors(std::move(EC),
62 if (auto EC = Stream.readInteger(NameCount))
63 return EC;
77 if (auto EC = NameReader.readZeroString(Result))
78 consumeError(std::move(EC));