/external/llvm/include/llvm/Support/ |
FileSystem.h | 83 enum perms { enum in namespace:llvm::sys::fs 107 // Helper functions so that you can use & and | to manipulate perms bits: 108 inline perms operator|(perms l , perms r) { 109 return static_cast<perms>( 112 inline perms operator&(perms l , perms r) { 113 return static_cast<perms>( [all...] |
/external/llvm/tools/llvm-ar/ |
llvm-ar.cpp | 302 sys::fs::perms Mode = I->getAccessMode(); 319 sys::fs::perms Mode = I->getAccessMode(); 599 unsigned GID, unsigned Perms, 604 printWithSpacePadding(Out, format("%o", Perms), 8); 611 unsigned GID, unsigned Perms, unsigned Size) { 613 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size); 618 unsigned GID, unsigned Perms, unsigned Size) { 621 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size);
|