HomeSort by: relevance | last modified time | path
    Searched defs:Perms (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ArchiveWriter.h 24 unsigned UID = 0, GID = 0, Perms = 0644;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
VirtualFileSystem.h 54 llvm::sys::fs::perms Perms;
65 llvm::sys::fs::perms Perms);
78 llvm::sys::fs::perms getPermissions() const { return Perms; }
427 Optional<llvm::sys::fs::perms> Perms,
436 /// and Perms apply to the newly-created file or directory.
444 Optional<llvm::sys::fs::perms> Perms = None)
    [all...]
FileSystem.h 86 enum perms { enum in namespace:llvm::sys::fs
111 // Helper functions so that you can use & and | to manipulate perms bits:
112 inline perms operator|(perms l, perms r) {
113 return static_cast<perms>(static_cast<unsigned short>(l) |
116 inline perms operator&(perms l, perms r) {
117 return static_cast<perms>(static_cast<unsigned short>(l)
    [all...]

Completed in 70 milliseconds