Lines Matching full:stat
24 #include <sys/stat.h>
50 /* MS C library seems to define stat and _stat. The definition
53 # define stat(x,y) _stat(x,y)
60 # define stat _stat
625 xmlWrapStatUtf8(const char *path,struct stat *info)
639 retval = stat(path,info);
669 xmlWrapStatNative(const char *path,struct stat *info)
672 return stat(path,info);
678 typedef int (* xmlWrapStatFunc) (const char *f, struct stat *s);
720 * if stat is not available on the target machine,
721 * returns 1. if stat fails, returns 0 (if calling
722 * stat on the filename fails, it can't be right).
723 * if stat succeeds and the file is a directory,
731 struct stat stat_buffer;
741 if (stat(path, &stat_buffer) == -1)