Searched refs:istream (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/util/prefs/
H A DPreferences.java441 * @param istream
449 public static void importPreferences (InputStream istream) throws InvalidPreferencesFormatException, IOException { argument
450 if (istream == null){
453 XMLParser.importPrefs(istream);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DHandshakeCompletedEventTest.java429 InputStream istream = clientSocket.getInputStream();
432 int j = istream.read();
436 istream.close();
510 InputStream istream = socket.getInputStream();
513 int j = istream.read();
517 istream.close();
H A DSSLSessionTest.java529 InputStream istream = clientSocket.getInputStream();
531 istream.read(buffer);
602 InputStream istream = socket.getInputStream();
604 istream.read(buffer);
/libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
H A DCertBlacklistTest.java221 InputStream istream = new ByteArrayInputStream(derCert);
223 return cf.generateCertificate(istream).getPublicKey();
228 InputStream istream = new ByteArrayInputStream(derCert);
230 X509Certificate xCert = (X509Certificate)cf.generateCertificate(istream);

Completed in 176 milliseconds