/cts/hostsidetests/securitybulletin/securityPatch/CVE-2020-0470/ |
D | poc.cpp | 78 ssize_t bytesRead = 0; in main() local 82 bytesRead = fread(buf, 1, FILE_SIZE, inFile); in main() 86 if (bytesRead <= 0) { in main() 87 bytesRead = 0; in main() 91 status = AMediaCodec_queueInputBuffer(codec, inIdx, 0, bytesRead, 0, bufferFlags); in main()
|
/cts/tests/tests/apache-http/src/android/net/http/cts/ |
D | ApacheHttpClientTest.java | 86 int bytesRead = stream.read(buffer); in assertDownloadResponse() local 87 if (bytesRead < 0) { in assertDownloadResponse() 90 numBytes += bytesRead; in assertDownloadResponse()
|
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/ |
D | FileUtils.java | 127 int bytesRead; in copyToFile() local 128 while ((bytesRead = inputStream.read(buffer)) >= 0) { in copyToFile() 129 out.write(buffer, 0, bytesRead); in copyToFile()
|
/cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/ |
D | MainHotwordDetectionService.java | 319 int bytesRead = in canReadAudio() local 321 if (bytesRead < 0) { in canReadAudio() 322 Log.e(TAG, "Error reading from mic: " + bytesRead); in canReadAudio() 325 numBytes += bytesRead; in canReadAudio()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/usb/accessory/ |
D | UsbAccessoryTestActivity.java | 256 long bytesRead = 0; in onAttached() local 258 while (bytesRead < TEST_DATA_SIZE_THRESHOLD) { in onAttached() 260 bytesRead += numRead; in onAttached() 263 speedKBPS = (bytesRead * 8 * 1000. / 1024.) in onAttached()
|
/cts/tests/framework/base/biometrics/src/android/server/biometrics/ |
D | Utils.java | 136 int bytesRead; in executeShellCommand() local 139 while ((bytesRead = fis.read(buf)) != -1) { in executeShellCommand() 140 stdout.write(buf, 0, bytesRead); in executeShellCommand()
|
/cts/tests/tests/print/src/android/print/cts/ |
D | PrintDocumentInfoTest.java | 186 long bytesRead = 0; in printDocumentBaseTest() local 193 bytesRead++; in printDocumentBaseTest() 196 assertEquals(queuedInfo[0].getDataSize(), bytesRead); in printDocumentBaseTest()
|
/cts/tests/app/src/android/app/cts/ |
D | DownloadManagerTestBase.java | 208 int bytesRead; in getTotalBytes() local 209 while ((bytesRead = in.read(buf)) != -1) { in getTotalBytes() 210 total += bytesRead; in getTotalBytes() 332 int bytesRead; in readFromInputStream() local 333 while ((bytesRead = inputStream.read(buf)) != -1) { in readFromInputStream() 334 res.append(new String(buf, 0, bytesRead)); in readFromInputStream()
|
D | ServiceTest.java | 438 int bytesRead; in executeShellCommand() local 441 while ((bytesRead = fis.read(buf)) != -1) { in executeShellCommand() 442 stdout.write(buf, 0, bytesRead); in executeShellCommand()
|
/cts/apps/CtsVerifierUSBCompanion/src/com/android/cts/verifierusbcompanion/ |
D | AccessoryTestCompanion.java | 171 long bytesRead = 0; in runTest() local 172 while (bytesRead < TEST_DATA_SIZE_THRESHOLD) { in runTest() 175 bytesRead += numTransferred; in runTest()
|
/cts/tests/tests/os/src/android/os/cts/ |
D | SeccompTest.java | 438 int bytesRead = policyStream.read(buffer); in installTestFilter() local 439 if (bytesRead == -1) in installTestFilter() 444 for (int i = 0; i < bytesRead; i++) { in installTestFilter()
|
/cts/tests/tests/neuralnetworks/java_test/jni/ |
D | android_neuralnetworks_cts_ModelAssetTest.cpp | 138 int bytesRead = AAsset_read(asset, ashmemData, length); in createMemoryFromAshmem() local 140 ASSERT_OR_RETURN_NULL(bytesRead == length); in createMemoryFromAshmem()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/ |
D | PowerTestHostLink.java | 149 int bytesRead = streamIn.read(buffer, total, in run() local 151 if (bytesRead > 0) { in run() 152 total += bytesRead; in run()
|
/cts/tests/framework/base/windowmanager/src/android/server/wm/ |
D | ActivityManagerGetConfigTests.java | 86 int bytesRead; in executeShellCommand() local 89 while ((bytesRead = fis.read(buf)) != -1) { in executeShellCommand() 90 stdout.write(buf, 0, bytesRead); in executeShellCommand()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | VideoCodecTestBase.java | 503 int bytesRead = srcStream.read(srcFrame); in cacheScaledImage() local 504 if (bytesRead != srcFrame.length) { in cacheScaledImage() 812 int bytesRead = mYuvStream.read(mSrcFrame); in getInputFrame() local 814 if (bytesRead == -1) { in getInputFrame() 819 bytesRead = mYuvStream.read(mSrcFrame); in getInputFrame() 1426 int bytesRead = yuvStream.read(srcFrame); in encode() local 1434 if (!sawInputEOS && bytesRead == -1) { in encode() 1442 bytesRead = yuvStream.read(srcFrame); in encode() 1742 int bytesRead = yuvStream[i].read(srcFrame[i]); in encodeSimulcast() local 1751 if (!sawInputEOS[i] && bytesRead == -1) { in encodeSimulcast() [all …]
|
D | MediaExtractorTest.java | 932 int [] bytesRead = new int[2]; in testProgramStreamExtraction() local 988 bytesRead[trackIdx] += n; in testProgramStreamExtraction() 1002 assertTrue("did not read from track 0", bytesRead[0] > 0); in testProgramStreamExtraction() 1003 assertTrue("did not read from track 1", bytesRead[1] > 0); in testProgramStreamExtraction()
|
/cts/tests/JobScheduler/src/android/jobscheduler/cts/ |
D | TriggerContentTest.java | 155 int bytesRead; in copyToFileOrThrow() local 156 while ((bytesRead = inputStream.read(buffer)) >= 0) { in copyToFileOrThrow() 157 out.write(buffer, 0, bytesRead); in copyToFileOrThrow()
|
/cts/tests/tests/provider/src/android/provider/cts/media/ |
D | MediaStore_DownloadsTest.java | 222 int bytesRead; in testInsertDownload() local 223 while ((bytesRead = in.read(buf)) != -1) { in testInsertDownload() 224 actual.write(buf, 0, bytesRead); in testInsertDownload()
|
/cts/tests/contentcaptureservice/src/android/contentcaptureservice/cts/ |
D | CtsContentCaptureService.java | 353 int bytesRead = fis.read(mDataShared, bytesReadTotal, in onDataShareRequest() 355 if (bytesRead == -1) { in onDataShareRequest() 358 bytesReadTotal += bytesRead; in onDataShareRequest()
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
D | AnimatedImageDrawableTest.java | 781 int bytesRead; in getAsByteArray() local 782 while ((bytesRead = in.read(buf)) != -1) { in getAsByteArray() 783 outputStream.write(buf, 0, bytesRead); in getAsByteArray()
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | ImageDecoderTest.java | 138 int bytesRead; in writeToStream() local 144 while ((bytesRead = input.read(buffer)) != -1) { in writeToStream() 145 output.write(buffer, 0, bytesRead); in writeToStream() 939 final int bytesRead = mInputStream.read(b, off, len); in read() local 940 mPosition += bytesRead; in read() 941 return bytesRead; in read()
|
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/ |
D | WindowManagerState.java | 359 int bytesRead; in executeShellCommand() local 362 while ((bytesRead = fis.read(buf)) != -1) { in executeShellCommand() 363 stdout.write(buf, 0, bytesRead); in executeShellCommand()
|
/cts/tests/media/src/android/mediav2/cts/ |
D | ExtractorTest.java | 1384 long bytesRead = testExtractor.readSampleData(testBuffer, bufOffset); 1385 if (bytesRead == -1) break; 1386 bufOffset += bytesRead;
|
/cts/apps/CtsVerifier/libs/ |
D | opencv3-android.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/opencv/
org/ ... |