| /src/external/ibm-public/postfix/dist/src/util/ |
| fsspace.c | 76 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.f_frsize [all...] |
| /src/usr.sbin/fssconfig/ |
| fssconfig.c | 118 struct statvfs fsbuf; local 129 if (prog_statvfs1(argv[1], &fsbuf, ST_WAIT) != 0 || 158 bssize = (off_t)fsbuf.f_blocks*fsbuf.f_frsize;
|
| /src/usr.sbin/quotaon/ |
| quotaon.c | 257 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) {
|
| /src/sbin/dump/ |
| main.c | 135 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)
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/err/ |
| err.c | 607 char lsbuf[64], fsbuf[64], rsbuf[64]; local 624 BIO_snprintf(fsbuf, sizeof(fsbuf), "func(%lu)", f); 625 fs = fsbuf;
|
| /src/sbin/savecore/ |
| savecore.c | 863 struct statvfs fsbuf; local 869 if (statvfs(dirname, &fsbuf) < 0) { 873 spacefree = fsbuf.f_bavail; 874 spacefree *= fsbuf.f_frsize;
|
| /src/external/gpl3/binutils/dist/binutils/ |
| ar.c | 1500 struct stat fsbuf, asbuf; 1502 if (stat (*files_to_move, &fsbuf) != 0) 1514 if (fsbuf.st_mtime <= asbuf.st_mtime) 1522 The timestamp in fsbuf.st_mtime however will 1528 So in either case fsbuf.st_mtime > asbuf.st_time 1498 struct stat fsbuf, asbuf; local
|
| /src/external/gpl3/binutils.old/dist/binutils/ |
| ar.c | 1523 struct stat fsbuf, asbuf; 1525 if (stat (*files_to_move, &fsbuf) != 0) 1537 if (fsbuf.st_mtime <= asbuf.st_mtime) 1545 The timestamp in fsbuf.st_mtime however will 1551 So in either case fsbuf.st_mtime > asbuf.st_time 1520 struct stat fsbuf, asbuf; local
|
| /src/external/gpl2/lvm2/dist/tools/ |
| dmsetup.c | 2744 struct statvfs fsbuf; local 2771 if (fstatvfs(fd, &fsbuf)) 2775 blksize = fsbuf.f_frsize;
|
| /src/external/ibm-public/postfix/dist/src/smtpd/ |
| smtpd_check.c | 5501 struct fsspace fsbuf; local 5515 #define BLOCKS(x) ((x) / fsbuf.block_size) 5517 fsspace(".", &fsbuf); 5521 (unsigned long) fsbuf.block_size, 5522 (unsigned long) fsbuf.block_free, 5525 if (BLOCKS(var_queue_minfree) >= fsbuf.block_free 5526 || BLOCKS(var_message_limit) >= fsbuf.block_free / smtpd_space_multf) { 5532 (unsigned long) fsbuf.block_free * fsbuf.block_size,
|