Home
last modified time | relevance | path

Searched refs:Perms (Results 1 – 6 of 6) sorted by relevance

/external/llvm/include/llvm/Support/
DFileSystem.h158 perms Perms; variable
163 Type(file_type::status_error), Perms(perms_not_known) {} in file_status()
167 Perms(perms_not_known) {} in file_status()
169 file_status(file_type Type, perms Perms, dev_t Dev, ino_t Ino, time_t MTime, in file_status() argument
172 fs_st_gid(GID), fs_st_size(Size), Type(Type), Perms(Perms) {} in file_status()
177 Perms(perms_not_known) {}
182 Perms(perms_not_known) {}
192 FileIndexLow(FileIndexLow), Type(Type), Perms(perms_not_known) {}
197 perms permissions() const { return Perms; } in permissions()
219 void permissions(perms p) { Perms = p; } in permissions()
/external/clang/include/clang/Basic/
DVirtualFileSystem.h40 llvm::sys::fs::perms Perms; variable
51 llvm::sys::fs::perms Perms);
60 llvm::sys::fs::perms getPermissions() const { return Perms; } in getPermissions()
67 void setPermissions(llvm::sys::fs::perms p) { Perms = p; } in setPermissions()
/external/llvm/tools/llvm-ar/
Dllvm-ar.cpp634 unsigned GID, unsigned Perms, in printRestOfMemberHeader() argument
639 printWithSpacePadding(Out, format("%o", Perms), 8); in printRestOfMemberHeader()
646 unsigned GID, unsigned Perms, unsigned Size) { in printMemberHeader() argument
648 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size); in printMemberHeader()
653 unsigned GID, unsigned Perms, unsigned Size) { in printMemberHeader() argument
656 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size); in printMemberHeader()
/external/clang/unittests/Basic/
DVirtualFileSystemTest.cpp100 void addRegularFile(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) { in addRegularFile() argument
102 0, 0, 1024, sys::fs::file_type::regular_file, Perms); in addRegularFile()
106 void addDirectory(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) { in addDirectory() argument
108 0, 0, 0, sys::fs::file_type::directory_file, Perms); in addDirectory()
/external/clang/lib/Basic/
DVirtualFileSystem.cpp36 Type(Status.type()), Perms(Status.permissions()), IsVFSMapped(false) {} in Status()
40 uint64_t Size, file_type Type, perms Perms) in Status() argument
42 Type(Type), Perms(Perms), IsVFSMapped(false) {} in Status()
/external/llvm/lib/Support/Unix/
DPath.inc429 perms Perms = static_cast<perms>(Status.st_mode);
431 file_status(Type, Perms, Status.st_dev, Status.st_ino, Status.st_mtime,