Home
last modified time | relevance | path

Searched refs:statfs_buf (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/libchrome_tools/patch/
Dstatfs_f_type.patch1 # In some platforms, |statfs_buf.f_type| is declared as signed, but some of the
17 // 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 of
23 + switch (static_cast<uintmax_t>(statfs_buf.f_type)) {
34 + // In some platforms, |statfs_buf.f_type| is declared as signed, but some of
/external/libchrome/base/files/
Dfile_util_linux.cc17 struct statfs statfs_buf; in GetFileSystemType() local
18 if (statfs(path.value().c_str(), &statfs_buf) < 0) { in GetFileSystemType()
30 switch (static_cast<uintmax_t>(statfs_buf.f_type)) { in GetFileSystemType()