Lines Matching refs:stat
690 int stat(const char *path, struct stat *stat)
700 if (stat == NULL) {
717 if (mp->mFs->fsFops->stat != NULL) {
718 ret = mp->mFs->fsFops->stat(mp, pathInMp, stat);
727 FUNC_ALIAS(stat, _stat, (const char *path, struct stat *stat), int);
1074 int lstat(const char *path, struct stat *buffer)
1076 return stat(path, buffer);
1079 int fstat(int fd, struct stat *buf)
1087 ret = stat(filep->fullPath, buf);
1092 FUNC_ALIAS(fstat, _fstat, (int fd, struct stat *buf), int);
1271 struct stat buf;
1273 result = stat(path, &buf);