Home
last modified time | relevance | path

Searched refs:getFileSizeInBytes (Results 1 – 1 of 1) sorted by relevance

/packages/modules/Virtualization/authfs/tests/hosttests/java/src/com/android/fs/
DAuthFsHostTest.java282 assertEquals(getFileSizeInBytes(sMicrodroid, outputPath), 10000); in testFileResize()
289 assertEquals(getFileSizeInBytes(sMicrodroid, outputPath), 15000); in testFileResize()
296 assertEquals(getFileSizeInBytes(sMicrodroid, outputPath), 5000); in testFileResize()
317 assertEquals(getFileSizeInBytes(sMicrodroid, authfsPath), 10000); in testOutputDirectory_WriteNewFiles()
325 assertEquals(getFileSizeInBytes(sMicrodroid, authfsPath), 15000); in testOutputDirectory_WriteNewFiles()
353 assertEquals(getFileSizeInBytes(sMicrodroid, authfsOutputDir + "/new_dir/file1"), 10000); in testOutputDirectory_MkdirAndWriteFile()
359 assertEquals(getFileSizeInBytes(sMicrodroid, authfsOutputDir + "/we/need/file2"), 10000); in testOutputDirectory_MkdirAndWriteFile()
377 assertEquals(getFileSizeInBytes(sMicrodroid, authfsOutputDir + "/file"), 3); in testOutputDirectory_CreateAndTruncateExistingFile()
380 assertEquals(getFileSizeInBytes(sMicrodroid, authfsOutputDir + "/file"), 10000); in testOutputDirectory_CreateAndTruncateExistingFile()
679 private static long getFileSizeInBytes(CommandRunner runner, String path) in getFileSizeInBytes() method in AuthFsHostTest