Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Object/
DArchiveWriter.h26 unsigned UID = 0, GID = 0, Perms = 0644; member
31 GID(Other.GID), Perms(Other.Perms) {} in NewArchiveMember()
37 Perms = Other.Perms;
/external/llvm/lib/Object/
DArchiveWriter.cpp53 M.Perms = OldMember.getAccessMode(); in getOldMember()
89 M.Perms = Status.permissions(); in getFile()
120 unsigned GID, unsigned Perms, in printRestOfMemberHeader() argument
125 printWithSpacePadding(Out, format("%o", Perms), 8); in printRestOfMemberHeader()
133 unsigned Perms, unsigned Size) { in printGNUSmallMemberHeader() argument
135 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size); in printGNUSmallMemberHeader()
140 unsigned GID, unsigned Perms, unsigned Size) { in printBSDMemberHeader() argument
146 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, in printBSDMemberHeader()
163 unsigned Perms, unsigned Size) { in printMemberHeader() argument
165 return printBSDMemberHeader(Out, Name, ModTime, UID, GID, Perms, Size); in printMemberHeader()
[all …]
/external/llvm/include/llvm/Support/
DFileSystem.h164 perms Perms; variable
171 Type(file_type::status_error), Perms(perms_not_known) {} in file_status()
176 Perms(perms_not_known) {} in file_status()
178 file_status(file_type Type, perms Perms, dev_t Dev, ino_t Ino, time_t ATime, in file_status() argument
182 Perms(Perms) {} in file_status()
188 Type(file_type::status_error), Perms(perms_not_known) {}
194 Perms(perms_not_known) {}
206 FileIndexLow(FileIndexLow), Type(Type), Perms(perms_not_known) {}
211 perms permissions() const { return Perms; } in permissions()
234 void permissions(perms p) { Perms = p; } in permissions()
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFileSystem.h165 perms Perms; variable
172 Type(file_type::status_error), Perms(perms_not_known) {} in file_status()
177 Perms(perms_not_known) {} in file_status()
179 file_status(file_type Type, perms Perms, dev_t Dev, ino_t Ino, time_t ATime, in file_status() argument
183 Perms(Perms) {} in file_status()
189 Type(file_type::status_error), Perms(perms_not_known) {}
195 Perms(perms_not_known) {}
207 FileIndexLow(FileIndexLow), Type(Type), Perms(perms_not_known) {}
212 perms permissions() const { return Perms; } in permissions()
235 void permissions(perms p) { Perms = p; } in permissions()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DFileSystem.h175 perms Perms = perms_not_known; variable
183 basic_file_status(file_type Type, perms Perms, time_t ATime, time_t MTime, in basic_file_status() argument
186 fs_st_size(Size), Type(Type), Perms(Perms) {} in basic_file_status()
188 basic_file_status(file_type Type, perms Perms, uint32_t LastAccessTimeHigh, in basic_file_status() argument
196 FileSizeLow(FileSizeLow), Type(Type), Perms(Perms) {} in basic_file_status()
201 perms permissions() const { return Perms; } in permissions()
225 void permissions(perms p) { Perms = p; } in permissions()
249 file_status(file_type Type, perms Perms, dev_t Dev, nlink_t Links, ino_t Ino, in file_status() argument
251 : basic_file_status(Type, Perms, ATime, MTime, UID, GID, Size), in file_status()
254 file_status(file_type Type, perms Perms, uint32_t LinkCount, in file_status() argument
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DArchiveWriter.cpp69 M.Perms = AccessModeOrErr.get(); in getOldMember()
108 M.Perms = Status.permissions(); in getFile()
145 unsigned UID, unsigned GID, unsigned Perms, unsigned Size) { in printRestOfMemberHeader() argument
153 printWithSpacePadding(Out, format("%o", Perms), 8); in printRestOfMemberHeader()
161 unsigned UID, unsigned GID, unsigned Perms, in printGNUSmallMemberHeader() argument
164 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size); in printGNUSmallMemberHeader()
170 unsigned UID, unsigned GID, unsigned Perms, in printBSDMemberHeader() argument
177 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, in printBSDMemberHeader()
251 M.Perms, Size); in printMemberHeader()
254 M.Perms, Size); in printMemberHeader()
[all …]
/external/clang/include/clang/Basic/
DVirtualFileSystem.h41 llvm::sys::fs::perms Perms; variable
52 llvm::sys::fs::perms Perms);
65 llvm::sys::fs::perms getPermissions() const { return Perms; } in getPermissions()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DArchiveWriter.h28 unsigned UID = 0, GID = 0, Perms = 0644; member
/external/pdfium/testing/resources/
Dbug_644.in15 /Perms <3D62C200CDB31A603EF202E12993AE13>
/external/llvm/lib/Support/
DPath.cpp871 perms Perms) { in create_directories() argument
876 std::error_code EC = create_directory(P, IgnoreExisting, Perms); in create_directories()
888 if ((EC = create_directories(Parent, IgnoreExisting, Perms))) in create_directories()
891 return create_directory(P, IgnoreExisting, Perms); in create_directories()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DPath.cpp873 perms Perms) { in create_directories() argument
878 std::error_code EC = create_directory(P, IgnoreExisting, Perms); in create_directories()
890 if ((EC = create_directories(Parent, IgnoreExisting, Perms))) in create_directories()
893 return create_directory(P, IgnoreExisting, Perms); in create_directories()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DPath.cpp907 perms Perms) { in create_directories() argument
912 std::error_code EC = create_directory(P, IgnoreExisting, Perms); in create_directories()
924 if ((EC = create_directories(Parent, IgnoreExisting, Perms))) in create_directories()
927 return create_directory(P, IgnoreExisting, Perms); in create_directories()
/external/llvm/lib/Support/Unix/
DPath.inc264 perms Perms) {
268 if (::mkdir(p.begin(), Perms) == -1) {
415 perms Perms = static_cast<perms>(Status.st_mode);
417 file_status(Type, Perms, Status.st_dev, Status.st_ino, Status.st_atime,
/external/clang/unittests/Basic/
DVirtualFileSystemTest.cpp118 void addRegularFile(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) { in addRegularFile() argument
120 1024, sys::fs::file_type::regular_file, Perms); in addRegularFile()
124 void addDirectory(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) { in addDirectory() argument
126 0, sys::fs::file_type::directory_file, Perms); in addDirectory()
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DPath.inc261 perms Perms) {
265 if (::mkdir(p.begin(), Perms) == -1) {
434 perms Perms = static_cast<perms>(Status.st_mode);
436 file_status(Type, Perms, Status.st_dev, Status.st_ino, Status.st_atime,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Unix/
DPath.inc282 perms Perms) {
286 if (::mkdir(p.begin(), Perms) == -1) {
554 perms Perms = static_cast<perms>(Status.st_mode) & all_perms;
555 Result = file_status(Type, Perms, Status.st_dev, Status.st_nlink,
/external/clang/lib/Basic/
DVirtualFileSystem.cpp48 Type(Status.type()), Perms(Status.permissions()), IsVFSMapped(false) {} in Status()
52 perms Perms) in Status() argument
54 Type(Type), Perms(Perms), IsVFSMapped(false) {} in Status()
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DPath.inc204 perms Perms) {
/external/llvm/lib/Support/Windows/
DPath.inc210 perms Perms) {
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/
DPath.inc228 perms Perms) {