Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/app/
DDownloadManagerFunctionalTest.java102 byte[] blobData = generateData(fileSize, DataType.BINARY); in testBinaryDownload()
104 long dlRequest = doBasicDownload(blobData); in testBinaryDownload()
105 verifyDownload(dlRequest, blobData); in testBinaryDownload()
115 byte[] blobData = generateData(fileSize, DataType.TEXT); in testTextDownload()
117 long dlRequest = doBasicDownload(blobData); in testTextDownload()
118 verifyDownload(dlRequest, blobData); in testTextDownload()
155 byte[] blobData = generateData(DEFAULT_FILE_SIZE, DataType.TEXT); in testDownloadToExternal_fileExists()
158 enqueueResponse(buildResponse(HTTP_OK, blobData)); in testDownloadToExternal_fileExists()
193 byte[] blobData = generateData(DEFAULT_FILE_SIZE, DataType.TEXT); in testDownloadToExternal()
196 enqueueResponse(buildResponse(HTTP_OK, blobData)); in testDownloadToExternal()
[all …]
DDownloadManagerStressTest.java83 byte[] blobData = generateData(size, DataType.TEXT); in testMultipleDownloads()
90 enqueueResponse(buildResponse(HTTP_OK, blobData)); in testMultipleDownloads()
198 byte[] blobData = generateData(DOWNLOAD_FILE_SIZE, DataType.TEXT); in testDownloadToCacheWithAlmostFullCache()
199 long dlRequest = doBasicDownload(blobData); in testDownloadToCacheWithAlmostFullCache()
200 verifyAndCleanupSingleFileDownload(dlRequest, blobData); in testDownloadToCacheWithAlmostFullCache()
DDownloadManagerBaseTest.java1025 protected long doBasicDownload(byte[] blobData) throws Exception { in doBasicDownload() argument
1026 long dlRequest = enqueueDownloadRequest(blobData); in doBasicDownload()
/frameworks/base/apct-tests/perftests/blobstore/src/com/android/perftests/blob/
DBlobStorePerfTests.java99 final DummyBlobData blobData = prepareDataBlob(fileSizeInMb); in testComputeDigest() local
103 commitBlob(blobData); in testComputeDigest()
108 deleteBlob(blobData.getBlobHandle()); in testComputeDigest()
124 final DummyBlobData blobData = new DummyBlobData.Builder(mContext) in prepareDataBlob() local
127 blobData.prepare(); in prepareDataBlob()
128 return blobData; in prepareDataBlob()
131 private void commitBlob(DummyBlobData blobData) throws Exception { in commitBlob() argument
132 final long sessionId = mBlobStoreManager.createSession(blobData.getBlobHandle()); in commitBlob()
134 blobData.writeToSession(session); in commitBlob()