Searched refs:vfs (Results 1 – 1 of 1) sorted by relevance
1001 StructStatVfs vfs = Os.statvfs("/system"); in testSystemMountedRO() local1002 assertTrue("/system is not mounted read-only", (vfs.f_flag & OsConstants.ST_RDONLY) != 0); in testSystemMountedRO()1007 StructStatVfs vfs = Os.statvfs("/"); in testRootMountedRO() local1008 assertTrue("rootfs is not mounted read-only", (vfs.f_flag & OsConstants.ST_RDONLY) != 0); in testRootMountedRO()1013 StructStatVfs vfs = Os.statvfs("/vendor"); in testVendorMountedRO() local1014 assertTrue("/vendor is not mounted read-only", (vfs.f_flag & OsConstants.ST_RDONLY) != 0); in testVendorMountedRO()1019 StructStatVfs vfs = Os.statvfs("/odm"); in testOdmMountedRO() local1020 assertTrue("/odm is not mounted read-only", (vfs.f_flag & OsConstants.ST_RDONLY) != 0); in testOdmMountedRO()1025 StructStatVfs vfs = Os.statvfs("/oem"); in testOemMountedRO() local1026 assertTrue("/oem is not mounted read-only", (vfs.f_flag & OsConstants.ST_RDONLY) != 0); in testOemMountedRO()[all …]