Lines Matching refs:stat
157 struct stat buffer; in utimensat()
172 if (stat(__path, &buffer) < 0) in utimensat()
489 struct stat stat; in unlink() local
497 result = dfs_file_lstat(pathname, &stat); in unlink()
498 if (result == 0 && S_ISDIR(stat.st_mode)) in unlink()
526 int stat(const char *file, struct stat *buf) in stat() function
544 RTM_EXPORT(stat);
554 int fstat(int fildes, struct stat *buf) in fstat()
576 ret = file->dentry->mnt->fs_ops->stat(file->dentry, buf); in fstat()
815 struct stat stat; in mkdir() local
824 if (path && dfs_file_lstat(path, &stat) == 0) in mkdir()
866 struct stat stat; in rmdir() local
900 if (dfs_file_lstat(pathname, &stat) == 0) in rmdir()
902 if (S_ISLNK(stat.st_mode)) in rmdir()
1260 struct stat st; in access()
1268 if (stat(path, &st) < 0) in access()