Lines Matching defs:stat_fs
2710 uv_statfs_t* stat_fs;
2773 stat_fs = uv__malloc(sizeof(*stat_fs));
2774 if (stat_fs == NULL) {
2779 stat_fs->f_type = 0;
2780 stat_fs->f_bsize = bytes_per_sector * sectors_per_cluster;
2781 stat_fs->f_blocks = total_clusters;
2782 stat_fs->f_bfree = free_clusters;
2783 stat_fs->f_bavail = free_clusters;
2784 stat_fs->f_files = 0;
2785 stat_fs->f_ffree = 0;
2786 req->ptr = stat_fs;