Home | History | Annotate | Download | only in Support

Lines Matching refs:EC

194     if (std::error_code EC =
197 if (EC == errc::file_exists)
199 return EC;
206 std::error_code EC =
208 if (EC == errc::no_such_file_or_directory)
210 if (EC)
211 return EC;
216 if (std::error_code EC =
218 if (EC == errc::file_exists)
220 return EC;
715 std::error_code EC = status(Path, Status);
716 if (EC)
717 return EC;
796 else if (std::error_code ec = current_path(current_dir))
797 return ec;
848 std::error_code EC = create_directory(P, IgnoreExisting, Perms);
851 if (EC != errc::no_such_file_or_directory)
852 return EC;
858 return EC;
860 if ((EC = create_directories(Parent, IgnoreExisting, Perms)))
861 return EC;
868 if (std::error_code EC = openFileForRead(From, ReadFD))
869 return EC;
870 if (std::error_code EC = openFileForWrite(To, WriteFD, F_None)) {
872 return EC;
914 if (std::error_code ec = status(path, st))
915 return ec;
926 if (std::error_code ec = status(path, st))
927 return ec;
940 if (std::error_code EC = status(Path, FileStatus))
941 return EC;
1105 if (std::error_code EC = openFileForRead(Path, FD))
1106 return EC;