Lines Matching refs:perms
86 enum perms { enum
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) &
120 inline perms &operator|=(perms &l, perms r) {
124 inline perms &operator&=(perms &l, perms r) {
128 inline perms operator~(perms x) {
130 return static_cast<perms>(
156 perms Perms = perms_not_known;
164 basic_file_status(file_type Type, perms Perms, time_t ATime, in basic_file_status()
172 basic_file_status(file_type Type, perms Perms, uint32_t LastAccessTimeHigh, in basic_file_status()
185 perms permissions() const { return Perms; } in permissions()
222 void permissions(perms p) { Perms = p; } in permissions()
246 file_status(file_type Type, perms Perms, dev_t Dev, nlink_t Links, ino_t Ino, in file_status()
254 file_status(file_type Type, perms Perms, uint32_t LinkCount, in file_status()
307 perms Perms = owner_all | group_all);
316 perms Perms = owner_all | group_all);
668 std::error_code setPermissions(const Twine &Path, perms Permissions);
673 std::error_code setPermissions(int FD, perms Permissions);
683 ErrorOr<perms> getPermissions(const Twine &Path);