/external/llvm/lib/Object/ |
D | ArchiveWriter.cpp | 104 unsigned GID, unsigned Perms, in printRestOfMemberHeader() argument 109 printWithSpacePadding(Out, format("%o", Perms), 8); in printRestOfMemberHeader() 117 unsigned Perms, unsigned Size) { in printGNUSmallMemberHeader() argument 119 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size); in printGNUSmallMemberHeader() 124 unsigned GID, unsigned Perms, unsigned Size) { in printBSDMemberHeader() argument 130 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, in printBSDMemberHeader() 147 unsigned Perms, unsigned Size) { in printMemberHeader() argument 149 return printBSDMemberHeader(Out, Name, ModTime, UID, GID, Perms, Size); in printMemberHeader() 151 return printGNUSmallMemberHeader(Out, Name, ModTime, UID, GID, Perms, Size); in printMemberHeader() 154 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size); in printMemberHeader() [all …]
|
/external/llvm/include/llvm/Support/ |
D | FileSystem.h | 158 perms Perms; variable 164 Type(file_type::status_error), Perms(perms_not_known) {} in file_status() 168 Perms(perms_not_known) {} in file_status() 170 file_status(file_type Type, perms Perms, dev_t Dev, ino_t Ino, time_t MTime, in file_status() argument 173 fs_st_gid(GID), fs_st_size(Size), Type(Type), Perms(Perms) {} in file_status() 178 Perms(perms_not_known) {} 183 Perms(perms_not_known) {} 193 FileIndexLow(FileIndexLow), Type(Type), Perms(perms_not_known) {} 198 perms permissions() const { return Perms; } in permissions() 220 void permissions(perms p) { Perms = p; } in permissions() [all …]
|
/external/clang/include/clang/Basic/ |
D | VirtualFileSystem.h | 40 llvm::sys::fs::perms Perms; variable 51 llvm::sys::fs::perms Perms); 64 llvm::sys::fs::perms getPermissions() const { return Perms; } in getPermissions()
|
/external/llvm/lib/Support/ |
D | Path.cpp | 843 perms Perms) { in create_directories() argument 848 std::error_code EC = create_directory(P, IgnoreExisting, Perms); in create_directories() 860 if ((EC = create_directories(Parent, IgnoreExisting, Perms))) in create_directories() 863 return create_directory(P, IgnoreExisting, Perms); in create_directories()
|
/external/llvm/lib/Support/Unix/ |
D | Path.inc | 223 perms Perms) { 227 if (::mkdir(p.begin(), Perms) == -1) { 374 perms Perms = static_cast<perms>(Status.st_mode); 376 file_status(Type, Perms, Status.st_dev, Status.st_ino, Status.st_mtime,
|
/external/clang/unittests/Basic/ |
D | VirtualFileSystemTest.cpp | 116 void addRegularFile(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) { in addRegularFile() argument 118 1024, sys::fs::file_type::regular_file, Perms); in addRegularFile() 122 void addDirectory(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) { in addDirectory() argument 124 0, sys::fs::file_type::directory_file, Perms); in addDirectory()
|
/external/clang/lib/Basic/ |
D | VirtualFileSystem.cpp | 45 Type(Status.type()), Perms(Status.permissions()), IsVFSMapped(false) {} in Status() 49 perms Perms) in Status() argument 51 Type(Type), Perms(Perms), IsVFSMapped(false) {} in Status()
|
/external/llvm/lib/Support/Windows/ |
D | Path.inc | 186 perms Perms) {
|