HomeSort by relevance Sort by last modified time
    Searched defs:ST_VALID (Results 1 - 3 of 3) sorted by null

  /bionic/tests/
sys_statvfs_test.cpp 36 static const uint32_t ST_VALID = 0x0020;
37 EXPECT_TRUE((sb.f_flag & ST_VALID) == 0) << sb.f_flag;
sys_vfs_test.cpp 37 static const uint32_t ST_VALID = 0x0020;
38 EXPECT_TRUE((sb.f_flags & ST_VALID) == 0) << sb.f_flags;
  /bionic/libc/bionic/
statvfs.cpp 33 // The kernel sets a private ST_VALID flag to signal to the C library whether the
35 #define ST_VALID 0x0020
56 result->f_flags &= ~ST_VALID;
66 result->f_flags &= ~ST_VALID;

Completed in 3888 milliseconds