Searched refs:acc (Results 1 – 5 of 5) sorted by relevance
/fs/cachefiles/ |
D | key.c | 36 unsigned int acc; in cachefiles_cook_key() local 89 acc = *(uint16_t *) raw; in cachefiles_cook_key() 92 key[len + 1] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key() 93 acc >>= 6; in cachefiles_cook_key() 94 key[len] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key() 125 acc = *raw++; in cachefiles_cook_key() 126 acc |= *raw++ << 8; in cachefiles_cook_key() 127 acc |= *raw++ << 16; in cachefiles_cook_key() 129 _debug("acc: %06x", acc); in cachefiles_cook_key() 131 key[len++] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key() [all …]
|
/fs/nfsd/ |
D | vfs.c | 2005 struct dentry *dentry, int acc) in nfsd_permission() argument 2010 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP) in nfsd_permission() 2014 acc, in nfsd_permission() 2015 (acc & NFSD_MAY_READ)? " read" : "", in nfsd_permission() 2016 (acc & NFSD_MAY_WRITE)? " write" : "", in nfsd_permission() 2017 (acc & NFSD_MAY_EXEC)? " exec" : "", in nfsd_permission() 2018 (acc & NFSD_MAY_SATTR)? " sattr" : "", in nfsd_permission() 2019 (acc & NFSD_MAY_TRUNC)? " trunc" : "", in nfsd_permission() 2020 (acc & NFSD_MAY_LOCK)? " lock" : "", in nfsd_permission() 2021 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "", in nfsd_permission() [all …]
|
D | nfs4state.c | 5582 int acc = (flags & RD_STATE) ? NFSD_MAY_READ : NFSD_MAY_WRITE; in nfs4_check_file() local 5589 acc | NFSD_MAY_OWNER_OVERRIDE); in nfs4_check_file() 5595 status = nfsd_file_acquire(rqstp, fhp, acc, &nf); in nfs4_check_file()
|
/fs/proc/ |
D | vmcore.c | 298 ssize_t acc = 0, tmp; in __read_vmcore() local 318 acc += tsz; in __read_vmcore() 322 return acc; in __read_vmcore() 350 acc += tsz; in __read_vmcore() 354 return acc; in __read_vmcore() 367 acc += tsz; in __read_vmcore() 371 return acc; in __read_vmcore() 387 acc += tsz; in __read_vmcore() 391 return acc; in __read_vmcore() 395 return acc; in __read_vmcore()
|
/fs/nfs/ |
D | nfs4xdr.c | 4240 uint32_t supp, acc; in decode_access() local 4250 acc = be32_to_cpup(p); in decode_access() 4252 *access = acc; in decode_access()
|