Lines Matching defs:statbuf
92 struct stat statbuf;
96 if (stat(path, &statbuf) != 0) {
102 if ((statbuf.st_mode & S_IFMT) != S_IFDIR) {
125 struct stat statbuf;
137 if (stat(file, &statbuf) != 0) {
143 if ((statbuf.st_mode & S_IFMT) == S_IFDIR) {
150 if ((statbuf.st_mode & S_IFMT) != S_IFREG) {
241 struct stat statbuf;
243 r = lstat(a_path, &statbuf);
248 return (isFstypeRemote(statbuf.st_fstype));
266 struct stat statbuf;
268 r = fstat(a_fd, &statbuf);
273 return (isFstypeRemote(statbuf.st_fstype));