Searched refs:vfs (Results 1 – 1 of 1) sorted by relevance
923 StructStatVfs vfs = Os.statvfs("/system"); in testSystemMountedRO() local924 assertTrue("/system is not mounted read-only", (vfs.f_flag & OsConstants.ST_RDONLY) != 0); in testSystemMountedRO()928 StructStatVfs vfs = Os.statvfs("/"); in testRootMountedRO() local929 assertTrue("rootfs is not mounted read-only", (vfs.f_flag & OsConstants.ST_RDONLY) != 0); in testRootMountedRO()933 StructStatVfs vfs = Os.statvfs("/vendor"); in testVendorMountedRO() local934 assertTrue("/vendor is not mounted read-only", (vfs.f_flag & OsConstants.ST_RDONLY) != 0); in testVendorMountedRO()938 StructStatVfs vfs = Os.statvfs("/odm"); in testOdmMountedRO() local939 assertTrue("/odm is not mounted read-only", (vfs.f_flag & OsConstants.ST_RDONLY) != 0); in testOdmMountedRO()943 StructStatVfs vfs = Os.statvfs("/oem"); in testOemMountedRO() local944 assertTrue("/oem is not mounted read-only", (vfs.f_flag & OsConstants.ST_RDONLY) != 0); in testOemMountedRO()[all …]