Searched refs:file_stat (Results 1 - 2 of 2) sorted by relevance

/haiku-buildtools/binutils/gold/
H A Dfileread.cc103 struct stat file_stat; local
105 if (stat(filename, &file_stat) < 0)
108 mtime->seconds = file_stat.st_mtim.tv_sec;
109 mtime->nanoseconds = file_stat.st_mtim.tv_nsec;
111 mtime->seconds = file_stat.st_mtime;
946 struct stat file_stat; local
949 if (fstat(this->descriptor_, &file_stat) < 0)
953 return Timespec(file_stat.st_mtim.tv_sec, file_stat.st_mtim.tv_nsec);
955 return Timespec(file_stat
[all...]
/haiku-buildtools/legacy/binutils/binutils/
H A Dstrings.c111 #define file_stat(f,s) stat64(f, s)
114 #define file_stat(f,s) stat(f, s)
438 if (file_stat (file, &st) < 0)
110 #define file_stat macro
113 #define file_stat macro

Completed in 90 milliseconds