D | ScopedStorageDeviceTest.java | 3208 assertAccess(file, false /* value is moot */, false /* canRead */, in assertCannotReadOrWrite() 3212 private static void assertAccess(File file, boolean exists, boolean canRead, boolean canWrite) in assertAccess() method in ScopedStorageDeviceTest 3214 assertAccess(file, exists, canRead, canWrite, true /* checkExists */); in assertAccess() 3217 private static void assertAccess(File file, boolean exists, boolean canRead, boolean canWrite, in assertAccess() method in ScopedStorageDeviceTest 3233 assertAccess(file, R_OK, canRead); in assertAccess() 3234 assertAccess(file, W_OK, canWrite); in assertAccess() 3235 assertAccess(file, R_OK | W_OK, canRead && canWrite); in assertAccess() 3236 assertAccess(file, W_OK | F_OK, canWrite); in assertAccess() 3239 assertAccess(file, F_OK, exists); in assertAccess() 3243 private static void assertAccess(File file, int mask, boolean expected) throws Exception { in assertAccess() method in ScopedStorageDeviceTest
|