Lines Matching defs:stat
250 /* alias of stat() */
251 extern int _std_stat(const char *, struct stat *);
253 /* replacement for stat() of kLIBC which fails if there are trailing dots */
255 stat(const char *name, struct stat *buffer)
329 /* stat()/lstat() version */
331 stat_ex(int (*fn)(const char *, struct stat *),
332 const char *name, struct stat *buffer)
345 struct stat sb;
348 if (stat(name, &sb) < 0 || !S_ISREG(sb.st_mode))