Searched refs:getOutputStream (Results 351 - 375 of 392) sorted by relevance

<<111213141516

/openjdk7/jdk/src/windows/classes/java/lang/
H A DProcessImpl.java420 public OutputStream getOutputStream() { method in class:ProcessImpl
/openjdk7/jdk/test/java/util/concurrent/locks/Lock/
H A DTimedAcquireLeak.java99 OutputStream os = p.getOutputStream();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSocketAdaptor.java270 public OutputStream getOutputStream() throws IOException { method in class:SocketAdaptor
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DTCPChannel.java221 new DataOutputStream(conn.getOutputStream());
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DSocketOrChannelConnectionImpl.java742 getSocket().getOutputStream().write(tmpBuf, 0, byteBuffer.limit());
743 getSocket().getOutputStream().flush();
1035 //socket.getOutputStream().flush();
1511 socket.getOutputStream().close();
/openjdk7/jdk/src/share/classes/java/net/
H A DSocksSocketImpl.java89 cmdOut = getOutputStream();
730 cmdOut = cmdsock.getOutputStream();
761 cmdOut = cmdsock.getOutputStream();
H A DURLConnection.java100 * <li><code>getOutputStream</code>
159 * @see java.net.URLConnection#getOutputStream()
851 public OutputStream getOutputStream() throws IOException { method in class:URLConnection
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSocketImpl.java635 sockOutput = super.getOutputStream();
638 sockOutput = self.getOutputStream();
2143 synchronized public OutputStream getOutputStream() throws IOException { method in class:SSLSocketImpl
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java633 ps = (PrintStream) http.getOutputStream();
985 ps = (PrintStream)http.getOutputStream();
1068 public synchronized OutputStream getOutputStream() throws IOException { method in class:HttpURLConnection
1107 ps = (PrintStream)http.getOutputStream();
1254 getOutputStream();
1318 ps = (PrintStream)http.getOutputStream();
3223 OutputStream o = http.getOutputStream();
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DDNSIdentities.java668 new PrintStream(sslSocket.getOutputStream());
H A DIPAddressDNSIdentities.java668 new PrintStream(sslSocket.getOutputStream());
H A DIPAddressIPIdentities.java669 new PrintStream(sslSocket.getOutputStream());
H A DIPIdentities.java669 new PrintStream(sslSocket.getOutputStream());
H A DIdentities.java668 new PrintStream(sslSocket.getOutputStream());
H A DTunnelProxy.java273 OutputStream toServer = sockToServer.getOutputStream();
/openjdk7/jdk/test/sample/chatserver/
H A DChatTest.java359 Writer writer = new FlushingWriter(new OutputStreamWriter(socket.getOutputStream()))) {
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DSSLStreams.java151 OutputStream getOutputStream () throws IOException { method in class:SSLStreams
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerImpl.java452 final OutputStream ostream = target.getOutputStream();
503 _tohFactory.setOutputStream(_ostream = connection.getOutputStream());
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToStream.java315 public OutputStream getOutputStream() method in class:ToStream
319 return ((WriterToUTF8Buffered) m_writer).getOutputStream();
321 return ((WriterToASCI) m_writer).getOutputStream();
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsClient.java644 out = new java.io.BufferedOutputStream(sock.getOutputStream());
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DConnection.java210 outStream = new BufferedOutputStream(sock.getOutputStream());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/client/p2p/
H A DHttpSOAPConnection.java235 OutputStream out = httpConnection.getOutputStream();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeBodyPart.java792 public OutputStream getOutputStream() throws IOException {
793 throw new UnsupportedOperationException("getOutputStream cannot be supported : You have enabled LazyAttachments Option");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DAttachmentPartImpl.java227 public OutputStream getOutputStream() throws IOException {
228 throw new UnsupportedOperationException("getOutputStream cannot be supported : You have enabled LazyAttachments Option");
H A DSOAPPartImpl.java345 public OutputStream getOutputStream() throws IOException {

Completed in 117 milliseconds

<<111213141516