Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/content/
DMemoryFileProviderTest.java39 byte[] buf = new byte[MemoryFileProvider.TEST_BLOB.length]; in testRead()
46 assertTrue(Arrays.equals(MemoryFileProvider.TEST_BLOB, buf)); in testRead()
59 byte[] buf = new byte[MemoryFileProvider.TEST_BLOB.length]; in testClose()
62 assertTrue(Arrays.equals(MemoryFileProvider.TEST_BLOB, buf)); in testClose()
72 byte[] buf = new byte[MemoryFileProvider.TEST_BLOB.length]; in testFile()
79 assertTrue(Arrays.equals(MemoryFileProvider.TEST_BLOB, buf)); in testFile()
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()