Lines Matching refs:EC
490 static int getFD(StringRef Filename, std::error_code &EC,
496 EC = std::error_code();
505 EC = sys::fs::openFileForWrite(Filename, FD, Flags);
506 if (EC)
512 raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC,
514 : raw_fd_ostream(getFD(Filename, EC, Flags), true) {}
531 std::error_code EC = status(FD, Status);
532 SupportsSeeking = !EC && Status.type() == sys::fs::file_type::regular_file;
707 std::error_code EC;
708 static raw_fd_ostream S("-", EC, sys::fs::F_None);
709 assert(!EC);