Lines Matching defs:stat_fs
601 uv_statfs_t* stat_fs;
617 stat_fs = uv__malloc(sizeof(*stat_fs));
618 if (stat_fs == NULL) {
629 stat_fs->f_type = 0; /* f_type is not supported. */
631 stat_fs->f_type = buf.f_type;
633 stat_fs->f_bsize = buf.f_bsize;
634 stat_fs->f_blocks = buf.f_blocks;
635 stat_fs->f_bfree = buf.f_bfree;
636 stat_fs->f_bavail = buf.f_bavail;
637 stat_fs->f_files = buf.f_files;
638 stat_fs->f_ffree = buf.f_ffree;
639 req->ptr = stat_fs;