Searched refs:fsbuf (Results 1 - 11 of 11) sorted by relevance

/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dfsspace.c76 struct fs_data fsbuf; local
78 if (statfs(path, &fsbuf) < 0)
81 sp->block_free = fsbuf.fd_bfreen;
83 struct statfs fsbuf; local
85 if (statfs(path, &fsbuf) < 0)
87 sp->block_size = fsbuf.f_bsize;
88 sp->block_free = fsbuf.f_bavail;
92 struct statvfs fsbuf; local
94 if (statvfs(path, &fsbuf) < 0)
96 sp->block_size = fsbuf
[all...]
/netbsd-current/usr.sbin/quotaon/
H A Dquotaon.c257 struct statvfs fsbuf; local
259 if (statvfs(fs->fs_file, &fsbuf) < 0 ||
260 strcmp(fsbuf.f_mntonname, fs->fs_file) ||
261 strcmp(fsbuf.f_mntfromname, fsspec)) {
265 if (fsbuf.f_flag & MNT_RDONLY) {
/netbsd-current/usr.sbin/fssconfig/
H A Dfssconfig.c118 struct statvfs fsbuf; local
129 if (prog_statvfs1(argv[1], &fsbuf, ST_WAIT) != 0 ||
158 bssize = (off_t)fsbuf.f_blocks*fsbuf.f_frsize;
/netbsd-current/sbin/dump/
H A Dmain.c135 struct statvfs *mntinfo, fsbuf; local
347 if (statvfs(argv[i], &fsbuf) == -1)
349 disk = fsbuf.f_mntfromname;
350 if (strcmp(argv[i], fsbuf.f_mntonname) == 0)
353 mountpoint = xstrdup(fsbuf.f_mntonname);
365 if (strcmp(mountpoint, fsbuf.f_mntonname) != 0)
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/err/
H A Derr.c607 char lsbuf[64], fsbuf[64], rsbuf[64]; local
624 BIO_snprintf(fsbuf, sizeof(fsbuf), "func(%lu)", f);
625 fs = fsbuf;
/netbsd-current/sbin/savecore/
H A Dsavecore.c863 struct statvfs fsbuf; local
869 if (statvfs(dirname, &fsbuf) < 0) {
873 spacefree = fsbuf.f_bavail;
874 spacefree *= fsbuf.f_frsize;
/netbsd-current/external/gpl3/binutils.old/dist/binutils/
H A Dar.c1439 struct stat fsbuf, asbuf;
1441 if (stat (*files_to_move, &fsbuf) != 0)
1452 if (fsbuf.st_mtime <= asbuf.st_mtime)
1436 struct stat fsbuf, asbuf; local
/netbsd-current/external/gpl3/binutils/dist/binutils/
H A Dar.c1504 struct stat fsbuf, asbuf;
1506 if (stat (*files_to_move, &fsbuf) != 0)
1517 if (fsbuf.st_mtime <= asbuf.st_mtime)
1501 struct stat fsbuf, asbuf; local
/netbsd-current/external/gpl3/gdb.old/dist/binutils/
H A Dar.c1440 struct stat fsbuf, asbuf;
1442 if (stat (*files_to_move, &fsbuf) != 0)
1453 if (fsbuf.st_mtime <= asbuf.st_mtime)
1437 struct stat fsbuf, asbuf; local
/netbsd-current/external/ibm-public/postfix/dist/src/smtpd/
H A Dsmtpd_check.c5463 struct fsspace fsbuf; local
5477 #define BLOCKS(x) ((x) / fsbuf.block_size)
5479 fsspace(".", &fsbuf);
5483 (unsigned long) fsbuf.block_size,
5484 (unsigned long) fsbuf.block_free,
5487 if (BLOCKS(var_queue_minfree) >= fsbuf.block_free
5488 || BLOCKS(var_message_limit) >= fsbuf.block_free / smtpd_space_multf) {
5494 (unsigned long) fsbuf.block_free * fsbuf.block_size,
/netbsd-current/external/gpl2/lvm2/dist/tools/
H A Ddmsetup.c2744 struct statvfs fsbuf; local
2771 if (fstatvfs(fd, &fsbuf))
2775 blksize = fsbuf.f_frsize;

Completed in 249 milliseconds