Lines Matching refs:stat_fs
687 uv_statfs_t* stat_fs; in uv__fs_statfs() local
703 stat_fs = uv__malloc(sizeof(*stat_fs)); in uv__fs_statfs()
704 if (stat_fs == NULL) { in uv__fs_statfs()
715 stat_fs->f_type = 0; /* f_type is not supported. */ in uv__fs_statfs()
717 stat_fs->f_type = buf.f_type; in uv__fs_statfs()
719 stat_fs->f_bsize = buf.f_bsize; in uv__fs_statfs()
720 stat_fs->f_blocks = buf.f_blocks; in uv__fs_statfs()
721 stat_fs->f_bfree = buf.f_bfree; in uv__fs_statfs()
722 stat_fs->f_bavail = buf.f_bavail; in uv__fs_statfs()
723 stat_fs->f_files = buf.f_files; in uv__fs_statfs()
724 stat_fs->f_ffree = buf.f_ffree; in uv__fs_statfs()
725 req->ptr = stat_fs; in uv__fs_statfs()