Searched refs:statfs_buf (Results 1 – 2 of 2) sorted by relevance
1 # In some platforms, |statfs_buf.f_type| is declared as signed, but some of the17 // Not all possible |statfs_buf.f_type| values are in linux/magic.h.19 - switch (statfs_buf.f_type) {20 + // In some platforms, |statfs_buf.f_type| is declared as signed, but some of23 + switch (static_cast<uintmax_t>(statfs_buf.f_type)) {34 + // In some platforms, |statfs_buf.f_type| is declared as signed, but some of
17 struct statfs statfs_buf; in GetFileSystemType() local18 if (statfs(path.value().c_str(), &statfs_buf) < 0) { in GetFileSystemType()30 switch (static_cast<uintmax_t>(statfs_buf.f_type)) { in GetFileSystemType()