Home | History | Annotate | Download | only in writeexternalstorageapp

Lines Matching defs:Os

24 import android.os.SystemClock;
25 import android.system.Os;
48 Os.rename(otherTestDir.getAbsolutePath(), ourTestDir.getAbsolutePath());
50 assertEquals(Os.getuid(), Os.stat(ourCache.getAbsolutePath()).st_uid);
51 assertEquals(Os.getuid(), Os.stat(ourTestDir.getAbsolutePath()).st_uid);
52 assertEquals(Os.getuid(), Os.stat(afterFile.getAbsolutePath()).st_uid);
67 Os.rename(ourTestDir.getAbsolutePath(), otherTestDir.getAbsolutePath());
72 assertNotEqual(Os.getuid(), Os.stat(otherCache.getAbsolutePath()).st_uid);
73 assertNotEqual(Os.getuid(), Os.stat(otherTestDir.getAbsolutePath()).st_uid);
74 assertNotEqual(Os.getuid(), Os.stat(afterFile.getAbsolutePath()).st_uid);