Home | History | Annotate | Download | only in Support

Lines Matching refs:EC

195     if (std::error_code EC =
198 if (EC == errc::file_exists)
200 return EC;
207 std::error_code EC =
209 if (EC == errc::no_such_file_or_directory)
211 if (EC)
212 return EC;
217 if (std::error_code EC =
219 if (EC == errc::file_exists)
221 return EC;
743 std::error_code EC = status(Path, Status);
744 if (EC)
745 return EC;
824 else if (std::error_code ec = current_path(current_dir))
825 return ec;
876 std::error_code EC = create_directory(P, IgnoreExisting, Perms);
879 if (EC != errc::no_such_file_or_directory)
880 return EC;
886 return EC;
888 if ((EC = create_directories(Parent, IgnoreExisting, Perms)))
889 return EC;
896 if (std::error_code EC = openFileForRead(From, ReadFD))
897 return EC;
898 if (std::error_code EC = openFileForWrite(To, WriteFD, F_None)) {
900 return EC;
942 if (std::error_code ec = status(path, st))
943 return ec;
954 if (std::error_code ec = status(path, st))
955 return ec;
968 if (std::error_code EC = status(Path, FileStatus))
969 return EC;
1145 if (std::error_code EC = openFileForRead(Path, FD))
1146 return EC;