fsd               965 src/filemanager/mountlist.c                 struct statfs fsd;
fsd               968 src/filemanager/mountlist.c                 if (statfs (me->me_mountdir, &fsd, sizeof (fsd), 0) != -1
fsd               969 src/filemanager/mountlist.c                     && sysfs (GETFSTYP, fsd.f_fstyp, typebuf) != -1)
fsd              1370 src/filemanager/mountlist.c         struct statvfs64 fsd;
fsd              1372 src/filemanager/mountlist.c         if (statvfs64 (file, &fsd) < 0)
fsd              1377 src/filemanager/mountlist.c         fsp->fsu_blocksize = fsd.f_frsize
fsd              1378 src/filemanager/mountlist.c             ? PROPAGATE_ALL_ONES (fsd.f_frsize)
fsd              1379 src/filemanager/mountlist.c             : PROPAGATE_ALL_ONES (fsd.f_bsize);
fsd              1384 src/filemanager/mountlist.c         struct statfs fsd;
fsd              1386 src/filemanager/mountlist.c         if (statfs (file, &fsd, sizeof (struct statfs)) != 0)
fsd              1389 src/filemanager/mountlist.c         fsp->fsu_blocksize = PROPAGATE_ALL_ONES (fsd.f_fsize);
fsd              1393 src/filemanager/mountlist.c         struct statfs fsd;
fsd              1395 src/filemanager/mountlist.c         if (statfs (file, &fsd) < 0)
fsd              1398 src/filemanager/mountlist.c         fsp->fsu_blocksize = PROPAGATE_ALL_ONES (fsd.f_frsize);
fsd              1404 src/filemanager/mountlist.c         struct statfs fsd;
fsd              1406 src/filemanager/mountlist.c         if (statfs (file, &fsd) < 0)
fsd              1409 src/filemanager/mountlist.c         fsp->fsu_blocksize = PROPAGATE_ALL_ONES (fsd.f_bsize);
fsd              1418 src/filemanager/mountlist.c         if (fsd.f_blocks == 0x7fffffff / fsd.f_bsize && fsd.f_spare[0] > 0)
fsd              1420 src/filemanager/mountlist.c             fsd.f_blocks = fsd.f_spare[0];
fsd              1421 src/filemanager/mountlist.c             fsd.f_bfree = fsd.f_spare[1];
fsd              1422 src/filemanager/mountlist.c             fsd.f_bavail = fsd.f_spare[2];
fsd              1428 src/filemanager/mountlist.c         struct statfs fsd;
fsd              1430 src/filemanager/mountlist.c         if (statfs (file, &fsd) < 0)
fsd              1433 src/filemanager/mountlist.c         fsp->fsu_blocksize = PROPAGATE_ALL_ONES (fsd.f_fsize);
fsd              1437 src/filemanager/mountlist.c         struct statfs fsd;
fsd              1439 src/filemanager/mountlist.c         if (statfs (file, &fsd, sizeof (fsd), 0) < 0)
fsd              1452 src/filemanager/mountlist.c         fsp->fsu_blocks = PROPAGATE_ALL_ONES (fsd.f_blocks);
fsd              1453 src/filemanager/mountlist.c         fsp->fsu_bfree = PROPAGATE_ALL_ONES (fsd.f_bfree);
fsd              1454 src/filemanager/mountlist.c         fsp->fsu_bavail = PROPAGATE_TOP_BIT (fsd.f_bavail);
fsd              1455 src/filemanager/mountlist.c         fsp->fsu_bavail_top_bit_set = EXTRACT_TOP_BIT (fsd.f_bavail) != 0;
fsd              1456 src/filemanager/mountlist.c         fsp->fsu_files = PROPAGATE_ALL_ONES (fsd.f_files);
fsd              1457 src/filemanager/mountlist.c         fsp->fsu_ffree = PROPAGATE_ALL_ONES (fsd.f_ffree);