Lines Matching refs:access
12 * Note that Win32 does not have the concept of files having access
15 * different concept of controlling access.
17 * This code needs to be revisited to set up proper access control for
46 * In order to set or retrieve access information, we need to obtain
103 FAT_fsaccess_set(const char *path, isc_fsaccess_t access) {
113 if ((access & bits) != 0) { \
115 access &= ~bits; \
134 INSIST(access == 0);
143 NTFS_Access_Control(const char *filename, const char *user, int access,
185 caccess = access;
271 NTFS_fsaccess_set(const char *path, isc_fsaccess_t access,
283 return (NTFS_Access_Control(path, username, access, isdir));
287 isc_fsaccess_set(const char *path, isc_fsaccess_t access) {
300 result = check_bad_bits(access, is_dir);
309 return (NTFS_fsaccess_set(path, access, is_dir));
311 return (FAT_fsaccess_set(path, access));