Home
last modified time | relevance | path

Searched refs:inStream (Results 1 – 6 of 6) sorted by relevance

/cts/tests/tests/gesture/src/android/gesture/cts/
DGestureStoreTest.java141 ByteArrayInputStream inStream = null; in testSaveLoadOutputStream() local
149 inStream = new ByteArrayInputStream(outStream.toByteArray()); in testSaveLoadOutputStream()
151 loadStore.load(inStream); in testSaveLoadOutputStream()
159 if (inStream != null) { in testSaveLoadOutputStream()
160 inStream.close(); in testSaveLoadOutputStream()
/cts/tests/tests/security/src/android/security/cts/
DBitmapFactoryDecodeStreamTest.java37 InputStream inStream = new BufferedInputStream(mContext.getResources().openRawResource( in testNinePatchHeapOverflow() local
39 BitmapFactory.decodeStream(inStream); in testNinePatchHeapOverflow()
/cts/tools/release-parser/src/com/android/cts/releaseparser/
DTestSuiteTradefedParser.java156 InputStream inStream = zip.getInputStream(entry); in parseFile() local
157 InputStreamReader isReader = new InputStreamReader(inStream, "UTF-8"); in parseFile()
180 inStream.close(); in parseFile()
DClassUtils.java134 InputStream inStream = openResourceAsStream(clazz, fileName); in getResrouceContentString() local
139 new BufferedReader(new InputStreamReader(inStream, Charset.forName("UTF-8")))) { in getResrouceContentString()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/peripheralprofile/
DProfileManager.java150 public boolean loadProfiles(InputStream inStream) { in loadProfiles() argument
157 xr.parse(new InputSource(inStream)); in loadProfiles()
/cts/tests/tests/telephony/current/src/android/telephony/cts/
DTelephonyManagerTest.java2881 InputStream inStream = new ByteArrayInputStream(IMSI_CERT_STRING_WLAN.getBytes()); in testGetCarrierInfoForImsiEncryption() local
2883 X509Certificate cert = (X509Certificate) cf.generateCertificate(inStream); in testGetCarrierInfoForImsiEncryption()
2886 inStream = new ByteArrayInputStream(IMSI_CERT_STRING_EPDG.getBytes()); in testGetCarrierInfoForImsiEncryption()
2887 cert = (X509Certificate) cf.generateCertificate(inStream); in testGetCarrierInfoForImsiEncryption()