Home | History | Annotate | Download | only in Support

Lines Matching refs:fs

27 using llvm::sys::fs::mapped_file_region;
35 sys::fs::remove(Twine(TempPath));
41 sys::fs::file_status Stat;
42 std::error_code EC = sys::fs::status(FilePath, Stat);
44 case sys::fs::file_type::file_not_found:
47 case sys::fs::file_type::regular_file: {
49 // FIXME: There is no sys::fs:: api for checking this.
61 EC = sys::fs::remove(FilePath);
65 unsigned Mode = sys::fs::all_read | sys::fs::all_write;
68 Mode |= sys::fs::all_exe;
73 EC = sys::fs::createUniqueFile(Twine(FilePath) + ".tmp%%%%%%%", FD,
86 EC = sys::fs::resize_file(FD, Size);
110 std::error_code EC = sys::fs::rename(Twine(TempPath), Twine(FinalPath));