Lines Matching defs:stat_fs
654 uv_statfs_t* stat_fs;
670 stat_fs = uv__malloc(sizeof(*stat_fs));
671 if (stat_fs == NULL) {
682 stat_fs->f_type = 0; /* f_type is not supported. */
684 stat_fs->f_type = buf.f_type;
686 stat_fs->f_bsize = buf.f_bsize;
687 stat_fs->f_blocks = buf.f_blocks;
688 stat_fs->f_bfree = buf.f_bfree;
689 stat_fs->f_bavail = buf.f_bavail;
690 stat_fs->f_files = buf.f_files;
691 stat_fs->f_ffree = buf.f_ffree;
692 req->ptr = stat_fs;