Lines Matching refs:EC
150 static void reportError(StringRef Input, std::error_code EC) {
151 reportError(Input, EC.message());
180 if (std::error_code EC = checkOffset(M, Addr, Size))
181 return EC;
196 if (auto EC = getObject(SB, M, M.getBufferStart()))
197 reportError(M.getBufferIdentifier(), EC);
245 if (auto EC = checkOffset(M, DirectoryBlocks))
246 reportError(M.getBufferIdentifier(), EC);
279 if (auto EC = checkOffset(M, DirectoryBlock))
280 reportError(M.getBufferIdentifier(), EC);
371 if (auto EC = checkOffset(M, StreamBlockData))
372 reportError(M.getBufferIdentifier(), EC);
386 if (std::error_code EC = ErrorOrBuffer.getError())
387 reportError(Path, EC);
531 std::error_code EC = sys::Process::GetArgumentVector(
533 if (EC) {
534 errs() << "error: couldn't get arguments: " << EC.message() << '\n';