Lines Matching defs:stat
38 #include <sys/stat.h>
123 static int (*_stat)(const char *, struct stat *) = NULL;
125 static int (*___xstat)(int, const char *, struct stat *) = NULL;
206 _stat = (int (*)(const char *, struct stat *)) dlsym_fn(RTLD_NEXT, "stat"); \
222 ___xstat = (int (*)(int, const char *, struct stat *)) dlsym_fn(RTLD_NEXT, "__xstat"); \
2484 int stat(const char *pathname, struct stat *buf) {
2488 struct stat parent;
2495 debug(DEBUG_LEVEL_VERBOSE, __FILE__": stat(%s)\n", pathname?pathname:"NULL");
2500 debug(DEBUG_LEVEL_NORMAL, __FILE__": stat(%s)\n", pathname);
2512 ret = stat("/dev", &parent);
2517 debug(DEBUG_LEVEL_NORMAL, __FILE__": unable to stat \"/dev\"\n");
2542 int stat64(const char *pathname, struct stat *buf) {
2544 struct stat oldbuf;
2556 ret = stat(pathname, &oldbuf);
2618 int __xstat(int ver, const char *pathname, struct stat *buf) {
2633 return stat(pathname, buf);