HomeSort by: relevance | last modified time | path
    Searched refs:stat_fs (Results 1 - 2 of 2) sorted by relevancy

  /src/external/mit/libuv/dist/src/unix/
fs.c 681 uv_statfs_t* stat_fs; local
697 stat_fs = uv__malloc(sizeof(*stat_fs));
698 if (stat_fs == NULL) {
709 stat_fs->f_type = 0; /* f_type is not supported. */
711 stat_fs->f_type = buf.f_type;
713 stat_fs->f_bsize = buf.f_bsize;
714 stat_fs->f_blocks = buf.f_blocks;
715 stat_fs->f_bfree = buf.f_bfree;
716 stat_fs->f_bavail = buf.f_bavail
    [all...]
  /src/external/mit/libuv/dist/src/win/
fs.c 3045 uv_statfs_t* stat_fs; local
3108 stat_fs = uv__malloc(sizeof(*stat_fs));
3109 if (stat_fs == NULL) {
3114 stat_fs->f_type = 0;
3115 stat_fs->f_bsize = bytes_per_sector * sectors_per_cluster;
3116 stat_fs->f_blocks = total_clusters;
3117 stat_fs->f_bfree = free_clusters;
3118 stat_fs->f_bavail = free_clusters;
3119 stat_fs->f_files = 0
    [all...]

Completed in 36 milliseconds