Searched refs:inStream (Results 26 - 39 of 39) sorted by relevance

12

/openjdk7/jdk/make/jpda/back/
H A DMakefile92 inStream.c \
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DInstallSDE.java72 FileInputStream inStream = new FileInputStream(input);
75 if (inStream.read(bytes, 0, len) != len) {
78 inStream.close();
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DConnection.java74 * inStream - synced access and update; initialized in constructor;
94 * inStream, outStream - no sync; used to construct new stream; accessed
98 * inStream, outStream - no sync; used to record the existing streams;
134 public InputStream inStream; // must be public; used by LdapSasl field in class:Connection
209 inStream = new BufferedInputStream(sock.getInputStream());
704 System.err.println("Replacing " + inStream + " with: " + newIn);
708 inStream = newIn;
723 * Used by Connection thread to read inStream into a local variable.
725 * and the Connection thread when the main thread updates inStream.
728 return inStream;
[all...]
H A DLdapClient.java395 return (conn.inStream instanceof SaslInputStream);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DDHPrivateKey.java126 InputStream inStream = new ByteArrayInputStream(encodedKey);
128 DerValue val = new DerValue(inStream);
H A DDHPublicKey.java124 InputStream inStream = new ByteArrayInputStream(encodedKey);
126 DerValue derKeyVal = new DerValue(inStream);
/openjdk7/jdk/src/share/classes/com/sun/tools/script/shell/
H A Dinit.js212 function inStream(str) { function
306 var stream = inStream(str);
386 var inp = inStream(from);
420 inp = inStream(obj);
733 inp = new BufferedInputStream(inStream(inp));
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java978 InputStream inStream = System.in;
980 inStream = new FileInputStream(filename);
983 doImportIdentityDatabase(inStream);
985 if (inStream != System.in) {
986 inStream.close();
990 InputStream inStream = System.in;
992 inStream = new FileInputStream(filename);
998 kssave = installReply(importAlias, inStream);
1009 kssave = addTrustedCert(importAlias, inStream);
1019 if (inStream !
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/sasl/
H A DLdapSasl.java77 * layer, set inStream and outStream to be filter streams that use
157 conn.inStream);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DCatalog.java673 DataInputStream inStream = null;
680 inStream = new DataInputStream(aUrl.openStream());
687 reader.readCatalog(this, inStream);
699 inStream.close();
849 DataInputStream inStream = null;
858 inStream = new DataInputStream(base.openStream());
866 reader.readCatalog(this, inStream);
878 inStream.close();
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ext/
H A DStartTlsResponseImpl.java300 originalInputStream = ldapConnection.inStream;
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyFile.java361 InputStream inStream =
369 ks.load(inStream, null);
370 inStream.close();
/openjdk7/jdk/src/share/classes/java/security/
H A DProvider.java218 * @param inStream the input stream.
223 public synchronized void load(InputStream inStream) throws IOException { argument
229 tempProperties.load(inStream);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java314 public static void loadBinary(InputStream inStream) throws IOException { argument
315 DataInputStream in = new DataInputStream(inStream);

Completed in 79 milliseconds

12