Searched defs:getOutputStream (Results 1 - 14 of 14) 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/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.java185 s.getOutputStream();
272 // java.net.Socket.getOutputStream()
273 int sport = startServer("SServer getOutputStream");
275 java.io.OutputStream os = s.getOutputStream();
281 OutputStream o = s.getOutputStream();
292 o = s.getOutputStream();
596 OutputStream theOutput = servSock.getOutputStream();
631 OutputStream theOutput = servSock.getOutputStream();
1053 OutputStream theOutput = servSock.getOutputStream();
1055 OutputStream theOutput2 = theSocket.getOutputStream();
2229 protected OutputStream getOutputStream() throws IOException { method in class:OldSocketTest.MockSocketImpl
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DSocketImplTest.java116 protected OutputStream getOutputStream() throws IOException { method in class:SocketImplTest.MockSocketImpl
H A DServerSocketTest.java910 protected OutputStream getOutputStream() throws IOException { method in class:ServerSocketTest.MockSocketImpl
/libcore/luni/src/main/java/java/net/
H A DSocketImpl.java187 protected abstract OutputStream getOutputStream() throws IOException; method in class:SocketImpl
H A DPlainSocketImpl.java245 @Override protected synchronized OutputStream getOutputStream() throws IOException { method in class:PlainSocketImpl
430 getOutputStream().write(request.getBytes(), 0, request.getLength());
H A DSocket.java403 public OutputStream getOutputStream() throws IOException { method in class:Socket
408 return impl.getOutputStream();
H A DURLConnection.java613 public OutputStream getOutputStream() throws IOException { method in class:URLConnection
/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.java571 public OutputStream getOutputStream() throws IOException { method in class:SocketChannelImpl.SocketAdapter
572 return new BlockingCheckOutputStream(super.getOutputStream(), channel);

Completed in 3255 milliseconds