Lines Matching refs:stat
39 #include "sys/stat.h"
51 int fstat(int fd, struct stat *buf)
60 return stat(filep->f_path, buf);
75 int lstat(const char *path, struct stat *buffer)
77 return stat(path, buffer);
156 struct stat statBuff;
179 ret = stat(fullpath, &statBuff);
296 struct stat buf;
312 ret = stat(path, &buf);
518 static void PrintFileInfo(const struct stat *statInfo, const char *name, const char *linkName)
554 struct stat statInfo;
562 } else if (stat(path, &statInfo) == 0) {
576 struct stat statInfo = { 0 };
598 (void)memset_s(&statInfo, sizeof(struct stat), 0, sizeof(struct stat));
599 (void)memset_s(&stat64Info, sizeof(struct stat), 0, sizeof(struct stat));
613 } else if (stat(fullpath, &statInfo) == 0) {
630 struct stat statInfo = { 0 };
658 ret = stat(path, &statInfo);
683 struct stat buf;
692 result = stat(new_path, &buf);