Searched defs:statbuf (Results 1 - 3 of 3) sorted by relevance

/bind-9.11.3/contrib/sdb/dir/
H A Ddirdb.c68 struct stat statbuf; local
84 CHECKN(lstat(filename, &statbuf));
86 if (S_ISDIR(statbuf.st_mode))
88 else if (S_ISCHR(statbuf.st_mode) || S_ISBLK(statbuf.st_mode)) {
91 S_ISCHR(statbuf.st_mode) ? "chr" : "blk",
92 major(statbuf.st_rdev),
93 minor(statbuf.st_rdev)));
95 } else if (S_ISFIFO(statbuf.st_mode))
97 else if (S_ISSOCK(statbuf
[all...]
/bind-9.11.3/lib/isc/
H A Dlog.c1304 struct stat statbuf; local
1322 if (stat(path, &statbuf) == 0) {
1323 regular_file = S_ISREG(statbuf.st_mode) ? ISC_TRUE : ISC_FALSE;
1328 statbuf.st_size >= FILE_MAXSIZE(channel)))
1398 struct stat statbuf; local
1661 (stat(FILE_NAME(channel), &statbuf) != 0 &&
1663 statbuf.st_size < FILE_MAXSIZE(channel)) {
1721 &statbuf) >= 0 &&
1722 statbuf.st_size > FILE_MAXSIZE(channel))
/bind-9.11.3/bin/named/
H A Dserver.c11646 MDB_stat statbuf; local
11655 status = mdb_stat(txn, dbi, &statbuf);
11665 *countp = statbuf.ms_entries;

Completed in 46 milliseconds