Lines Matching refs:EC
76 static void error(StringRef Filename, std::error_code EC) {
77 if (!EC)
79 errs() << Filename << ": " << EC.message() << "\n";
123 std::error_code EC;
125 for (sys::fs::directory_iterator Dir(BundlePath, EC), DirEnd;
126 Dir != DirEnd && !EC; Dir.increment(EC)) {
129 EC = sys::fs::status(Path, Status);
130 error(Path, EC);
140 error(BundlePath, EC);