Searched defs:getOutputStream (Results 1 - 18 of 18) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DProcess.java51 * OutputStream out = process.getOutputStream();
102 public abstract OutputStream getOutputStream(); method in class:Process
H A DProcessManager.java289 public OutputStream getOutputStream() { method in class:ProcessManager.ProcessImpl
/libcore/luni/src/main/java/javax/xml/transform/stream/
H A DStreamResult.java110 public OutputStream getOutputStream() { method in class:StreamResult
/libcore/luni/src/test/java/tests/api/java/lang/
H A DProcessTest.java42 OutputStream os = proc.getOutputStream();
71 * java.lang.Process#getOutputStream()
77 OutputStream os = proc.getOutputStream();
197 public OutputStream getOutputStream() { method in class:ProcessTest.ProcessClass
/libcore/luni/src/main/java/java/net/
H A DSocketImpl.java187 protected abstract OutputStream getOutputStream() throws IOException; method in class:SocketImpl
H A DPlainSocketImpl.java248 @Override protected synchronized OutputStream getOutputStream() throws IOException { method in class:PlainSocketImpl
433 getOutputStream().write(request.getBytes(), 0, request.getLength());
H A DSocket.java380 public OutputStream getOutputStream() throws IOException { method in class:Socket
385 return impl.getOutputStream();
H A DURLConnection.java614 public OutputStream getOutputStream() throws IOException { method in class:URLConnection
/libcore/luni/src/test/java/libcore/java/net/
H A DOldSocketImplFactoryTest.java158 protected OutputStream getOutputStream() throws IOException { method in class:OldSocketImplFactoryTest.MockSocketImpl
H A DOldServerSocketTest.java365 protected OutputStream getOutputStream() throws IOException { method in class:OldServerSocketTest.MockSocketImpl
H A DOldSocketTest.java186 s.getOutputStream();
273 // java.net.Socket.getOutputStream()
274 int sport = startServer("SServer getOutputStream");
276 java.io.OutputStream os = s.getOutputStream();
282 OutputStream o = s.getOutputStream();
293 o = s.getOutputStream();
597 OutputStream theOutput = servSock.getOutputStream();
632 OutputStream theOutput = servSock.getOutputStream();
1054 OutputStream theOutput = servSock.getOutputStream();
1056 OutputStream theOutput2 = theSocket.getOutputStream();
2230 protected OutputStream getOutputStream() throws IOException { method in class:OldSocketTest.MockSocketImpl
[all...]
/libcore/luni/src/main/java/libcore/net/http/
H A DHttpConnection.java144 public OutputStream getOutputStream() throws IOException { method in class:HttpConnection
147 sslOutputStream = sslSocket.getOutputStream();
151 outputStream = socket.getOutputStream();
H A DHttpURLConnectionImpl.java196 @Override public final OutputStream getOutputStream() throws IOException { method in class:HttpURLConnectionImpl
H A DHttpsURLConnectionImpl.java280 public OutputStream getOutputStream() throws IOException { method in class:HttpsURLConnectionImpl
281 return delegate.getOutputStream();
/libcore/luni/src/main/java/libcore/net/url/
H A DFtpURLConnection.java222 ctrlOutput = controlSocket.getOutputStream();
292 * @see #getOutputStream()
337 public OutputStream getOutputStream() throws IOException { method in class:FtpURLConnection
341 return dataSocket.getOutputStream();
/libcore/luni/src/main/java/java/nio/
H A DSocketChannelImpl.java555 public OutputStream getOutputStream() throws IOException { method in class:SocketChannelImpl.SocketAdapter
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DSSLSocketImpl.java196 output = super.getOutputStream();
504 * @see javax.net.ssl.SSLSocket#getOutputStream()
508 public OutputStream getOutputStream() throws IOException { method in class:SSLSocketImpl
H A DOpenSSLSocketImpl.java614 @Override public OutputStream getOutputStream() throws IOException { method in class:OpenSSLSocketImpl

Completed in 560 milliseconds