Home
last modified time | relevance | path

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

/cts/tests/tests/telephony/current/src/android/telephony/cts/
DCallComposerTest.java93 byte[] imageData = getSamplePictureAsBytes(); in testUploadPictureWithFile()
94 Files.write(testFile, imageData); in testUploadPictureWithFile()
97 checkStoredData(handle, imageData); in testUploadPictureWithFile()
102 byte[] imageData = getSamplePictureAsBytes(); in testUploadPictureAsStream()
103 ByteArrayInputStream inputStream = new ByteArrayInputStream(imageData); in testUploadPictureAsStream()
106 checkStoredData(handle, imageData); in testUploadPictureAsStream()
112 byte[] imageData = getSamplePictureAsBytes(); in testExcessivelyLargePictureAsFile()
114 System.arraycopy(imageData, 0, paddedData, 0, imageData.length); in testExcessivelyLargePictureAsFile()
125 byte[] imageData = getSamplePictureAsBytes(); in testExcessivelyLargePictureAsStream()
127 System.arraycopy(imageData, 0, paddedData, 0, imageData.length); in testExcessivelyLargePictureAsStream()
/cts/tests/tests/graphics/jni/
Dandroid_graphics_cts_CameraVulkanGpuTest.cpp81 std::vector<uint32_t> imageData; in loadCameraAndVerifyFrameImport() local
84 vkImage.semaphore(), vkImage.isSamplerImmutable(), &imageData), in loadCameraAndVerifyFrameImport()
/cts/tests/tests/graphics/src/android/graphics/cts/
DBitmapRegionDecoderTest.java172 byte[] imageData = obtainByteArray(RES_IDS[i]); in testNewInstanceByteArray()
175 .newInstance(imageData, 0, imageData.length); in testNewInstanceByteArray()
276 byte[] imageData = obtainByteArray(RES_IDS[i]); in testDecodeRegionByteArray()
278 .newInstance(imageData, 0, imageData.length); in testDecodeRegionByteArray()
279 Bitmap wholeImage = BitmapFactory.decodeByteArray(imageData, in testDecodeRegionByteArray()
280 0, imageData.length, opts); in testDecodeRegionByteArray()