Lines Matching defs:path
76 * Look for c:\path\... style, c:/path/... or \\computer\shar\path...
114 FAT_fsaccess_set(const char *path, isc_fsaccess_t access) {
147 if (_chmod(path, mode) < 0)
282 NTFS_fsaccess_set(const char *path, isc_fsaccess_t access,
294 return (NTFS_Access_Control(path, username, access, isdir));
298 isc_fsaccess_set(const char *path, isc_fsaccess_t access) {
303 if (stat(path, &statb) != 0)
319 if (is_ntfs(path))
320 return (NTFS_fsaccess_set(path, access, is_dir));
322 return (FAT_fsaccess_set(path, access));