Lines Matching defs:stat_fs
2697 uv_statfs_t* stat_fs;
2760 stat_fs = uv__malloc(sizeof(*stat_fs));
2761 if (stat_fs == NULL) {
2766 stat_fs->f_type = 0;
2767 stat_fs->f_bsize = bytes_per_sector * sectors_per_cluster;
2768 stat_fs->f_blocks = total_clusters;
2769 stat_fs->f_bfree = free_clusters;
2770 stat_fs->f_bavail = free_clusters;
2771 stat_fs->f_files = 0;
2772 stat_fs->f_ffree = 0;
2773 req->ptr = stat_fs;