HomeSort by relevance Sort by last modified time
    Searched refs:Perms (Results 1 - 13 of 13) sorted by null

  /external/llvm/include/llvm/Object/
ArchiveWriter.h 26 unsigned UID = 0, GID = 0, Perms = 0644;
31 GID(Other.GID), Perms(Other.Perms) {}
37 Perms = Other.Perms;
  /external/llvm/lib/Object/
ArchiveWriter.cpp 53 M.Perms = OldMember.getAccessMode();
89 M.Perms = Status.permissions();
120 unsigned GID, unsigned Perms,
125 printWithSpacePadding(Out, format("%o", Perms), 8);
133 unsigned Perms, unsigned Size) {
135 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size);
140 unsigned GID, unsigned Perms, unsigned Size) {
146 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms,
163 unsigned Perms, unsigned Size) {
165 return printBSDMemberHeader(Out, Name, ModTime, UID, GID, Perms, Size)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
ArchiveWriter.h 28 unsigned UID = 0, GID = 0, Perms = 0644;
  /external/llvm/include/llvm/Support/
FileSystem.h 76 enum perms { enum in namespace:llvm::sys::fs
100 // Helper functions so that you can use & and | to manipulate perms bits:
101 inline perms operator|(perms l, perms r) {
102 return static_cast<perms>(static_cast<unsigned short>(l) |
105 inline perms operator&(perms l, perms r) {
106 return static_cast<perms>(static_cast<unsigned short>(l)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
FileSystem.h 75 enum perms { enum in namespace:llvm::sys::fs
99 // Helper functions so that you can use & and | to manipulate perms bits:
100 inline perms operator|(perms l, perms r) {
101 return static_cast<perms>(static_cast<unsigned short>(l) |
104 inline perms operator&(perms l, perms r) {
105 return static_cast<perms>(static_cast<unsigned short>(l)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
ArchiveWriter.cpp 66 Expected<sys::fs::perms> AccessModeOrErr = OldMember.getAccessMode();
69 M.Perms = AccessModeOrErr.get();
108 M.Perms = Status.permissions();
145 unsigned UID, unsigned GID, unsigned Perms, unsigned Size) {
153 printWithSpacePadding(Out, format("%o", Perms), 8);
161 unsigned UID, unsigned GID, unsigned Perms,
164 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size);
170 unsigned UID, unsigned GID, unsigned Perms,
177 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms,
251 M.Perms, Size)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
FileSystem.h 87 enum perms { enum in namespace:llvm::sys::fs
112 // Helper functions so that you can use & and | to manipulate perms bits:
113 inline perms operator|(perms l, perms r) {
114 return static_cast<perms>(static_cast<unsigned short>(l) |
117 inline perms operator&(perms l, perms r) {
118 return static_cast<perms>(static_cast<unsigned short>(l)
    [all...]
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 41 llvm::sys::fs::perms Perms;
52 llvm::sys::fs::perms Perms);
65 llvm::sys::fs::perms getPermissions() const { return Perms; }
  /external/llvm/lib/Support/
Path.cpp 871 perms Perms) {
876 std::error_code EC = create_directory(P, IgnoreExisting, Perms);
888 if ((EC = create_directories(Parent, IgnoreExisting, Perms)))
891 return create_directory(P, IgnoreExisting, Perms);
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Path.cpp 873 perms Perms) {
878 std::error_code EC = create_directory(P, IgnoreExisting, Perms);
890 if ((EC = create_directories(Parent, IgnoreExisting, Perms)))
893 return create_directory(P, IgnoreExisting, Perms);
    [all...]
  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 118 void addRegularFile(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) {
120 1024, sys::fs::file_type::regular_file, Perms);
124 void addDirectory(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) {
126 0, sys::fs::file_type::directory_file, Perms);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Path.cpp 907 perms Perms) {
912 std::error_code EC = create_directory(P, IgnoreExisting, Perms);
924 if ((EC = create_directories(Parent, IgnoreExisting, Perms)))
927 return create_directory(P, IgnoreExisting, Perms);
1087 ErrorOr<perms> getPermissions(const Twine &Path) {
    [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 42 using llvm::sys::fs::perms;
48 Type(Status.type()), Perms(Status.permissions()), IsVFSMapped(false) {}
52 perms Perms)
54 Type(Type), Perms(Perms), IsVFSMapped(false) {}
499 llvm::sys::fs::perms::all_all))),
817 /// Perms = 0777
    [all...]

Completed in 1446 milliseconds