Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProviderTest.java40 byte[] buf = new byte[MemoryFileProvider.TEST_BLOB.length]; in testRead()
47 assertTrue(Arrays.equals(MemoryFileProvider.TEST_BLOB, buf)); in testRead()
60 byte[] buf = new byte[MemoryFileProvider.TEST_BLOB.length]; in testClose()
63 assertTrue(Arrays.equals(MemoryFileProvider.TEST_BLOB, buf)); in testClose()
73 byte[] buf = new byte[MemoryFileProvider.TEST_BLOB.length]; in testFile()
80 assertTrue(Arrays.equals(MemoryFileProvider.TEST_BLOB, buf)); in testFile()
H A DMemoryFileProvider.java39 public static final byte[] TEST_BLOB = new byte[] { field in MemoryFileProvider
80 values.put("_blob", TEST_BLOB); in onCreate()
104 out.write(TEST_BLOB); in onCreate()
140 return ParcelFileDescriptor.fromData(TEST_BLOB, null); in openFile()