Home
last modified time | relevance | path

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

/cts/hostsidetests/scopedstorage/device/src/android/scopedstorage/cts/device/
DStorageOwnedFilesTest.java88 private static final byte[] BYTES_DATA1 = STR_DATA1.getBytes(); field in StorageOwnedFilesTest
213 Os.write(parcelFileDescriptor.getFileDescriptor(), ByteBuffer.wrap(BYTES_DATA1)); in assertInsertFile()
214 assertFileContent(parcelFileDescriptor.getFileDescriptor(), BYTES_DATA1); in assertInsertFile() local
/cts/hostsidetests/scopedstorage/legacy/src/android/scopedstorage/cts/legacy/
DLegacyStorageTest.java19 import static android.scopedstorage.cts.lib.TestUtils.BYTES_DATA1;
388 fos.write(BYTES_DATA1); in testInsertHiddenFile()
665 fos.write(BYTES_DATA1); in testRenameDoesntInvalidateUri_hasRW()
838 fos.write(BYTES_DATA1); in assertFileInsertWithMimeType()
871 fos.write(BYTES_DATA1); in testLegacySystemGalleryCanRenameImagesAndVideosWithoutDbUpdates()
876 assertFileContent(videoFile, BYTES_DATA1); in testLegacySystemGalleryCanRenameImagesAndVideosWithoutDbUpdates()
955 fos.write(BYTES_DATA1); in testLegacyWESCanRenameImagesAndVideosWithDbUpdates_hasW()
960 assertFileContent(videoFile, BYTES_DATA1); in testLegacyWESCanRenameImagesAndVideosWithDbUpdates_hasW()
/cts/hostsidetests/scopedstorage/general/src/android/scopedstorage/cts/general/
DScopedStorageDeviceTest.java184 public static final byte[] BYTES_DATA1 = STR_DATA1.getBytes(); field in ScopedStorageDeviceTest
436 fos.write(BYTES_DATA1); in testCreateFileInAppExternalDir()
440 assertFileContent(file, BYTES_DATA1); in testCreateFileInAppExternalDir()
519 fos.write(BYTES_DATA1); in testContributeMediaFile()
532 BYTES_DATA1.length + BYTES_DATA2.length); in testContributeMediaFile()
716 ByteBuffer.wrap(BYTES_DATA1))).isEqualTo(BYTES_DATA1.length); in testLowLevelFileIO()
717 assertFileContent(fd, BYTES_DATA1); in testLowLevelFileIO()
1128 fos.write(BYTES_DATA1); in writeAndCheckMtime()
1493 assertCanWriteAndRead(otherAppImageFile, BYTES_DATA1); in testDisableOpResetForSystemGallery()
1494 assertCanWriteAndRead(otherAppVideoFile, BYTES_DATA1); in testDisableOpResetForSystemGallery()
[all …]
/cts/hostsidetests/scopedstorage/src/android/scopedstorage/cts/
DScopedStorageTest.java26 import static android.scopedstorage.cts.lib.TestUtils.BYTES_DATA1;
637 fos.write(BYTES_DATA1); in testManageExternalStorageCanRenameOtherAppsContents()
639 assertFileContent(otherAppPdf, BYTES_DATA1); in testManageExternalStorageCanRenameOtherAppsContents()
643 assertFileContent(pdf, BYTES_DATA1); in testManageExternalStorageCanRenameOtherAppsContents()
646 assertFileContent(topLevelPdf, BYTES_DATA1); in testManageExternalStorageCanRenameOtherAppsContents()
650 assertFileContent(pdfInObviouslyWrongPlace, BYTES_DATA1); in testManageExternalStorageCanRenameOtherAppsContents()
654 assertFileContent(musicFile, BYTES_DATA1); in testManageExternalStorageCanRenameOtherAppsContents()
/cts/hostsidetests/scopedstorage/libs/ScopedStorageTestLib/src/android/scopedstorage/cts/lib/
DTestUtils.java160 public static final byte[] BYTES_DATA1 = STR_DATA1.getBytes(); field in TestUtils