Lines Matching refs:statbuf
94 struct stat statbuf;
98 if (stat(path, &statbuf) != 0) {
104 if ((statbuf.st_mode & S_IFMT) != S_IFDIR) {
127 struct stat statbuf;
139 if (stat(file, &statbuf) != 0) {
145 if ((statbuf.st_mode & S_IFMT) == S_IFDIR) {
152 if ((statbuf.st_mode & S_IFMT) != S_IFREG) {
243 struct stat statbuf;
245 r = lstat(a_path, &statbuf);
250 return (isFstypeRemote(statbuf.st_fstype));
268 struct stat statbuf;
270 r = fstat(a_fd, &statbuf);
275 return (isFstypeRemote(statbuf.st_fstype));