Lines Matching refs:EC
491 static int getFD(StringRef Filename, std::error_code &EC,
497 EC = std::error_code();
506 EC = sys::fs::openFileForWrite(Filename, FD, Flags);
507 if (EC)
513 raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC,
515 : raw_fd_ostream(getFD(Filename, EC, Flags), true) {}
532 std::error_code EC = status(FD, Status);
533 SupportsSeeking = !EC && Status.type() == sys::fs::file_type::regular_file;
723 std::error_code EC;
724 static raw_fd_ostream S("-", EC, sys::fs::F_None);
725 assert(!EC);