Searched refs:getOutputStream (Results 1 - 25 of 39) sorted by relevance

12

/libcore/luni/src/main/java/java/lang/
H A DProcess.java51 * OutputStream out = process.getOutputStream();
102 public abstract OutputStream getOutputStream(); method in class:Process
/libcore/luni/src/test/java/libcore/java/net/
H A DOldUnixSocketTest.java46 OutputStream clientOut = pingClient.getOutputStream();
51 OutputStream out = worker.getOutputStream();
107 OutputStream o = socket.getOutputStream();
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...]
H A DOldSocketImplFactoryTest.java158 protected OutputStream getOutputStream() throws IOException { method in class:OldSocketImplFactoryTest.MockSocketImpl
H A DSocketTest.java190 @Override protected OutputStream getOutputStream() throws IOException { return null; }
267 OutputStream out = socket.getOutputStream();
298 socket.getOutputStream().write(data);
373 OutputStream out = socket.getOutputStream();
/libcore/luni/src/main/java/javax/xml/transform/stream/
H A DStreamResult.java110 public OutputStream getOutputStream() { method in class:StreamResult
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DProcess2Test.java35 * java.lang.Process#getOutputStream()
44 assertNotNull(p.getOutputStream());
H A DProcessTest.java54 OutputStream os = p.getOutputStream();
83 p.getOutputStream().close();
H A DProcessManagerTest.java39 OutputStream out = process.getOutputStream();
/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();
/libcore/luni/src/main/java/java/util/logging/
H A DSocketHandler.java123 super.internalSetOutputStream(new BufferedOutputStream(this.socket.getOutputStream()));
/libcore/benchmarks/src/benchmarks/regression/
H A DSSLSocketBenchmark.java83 OutputStream out = s.getOutputStream();
/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 DSocketTest.java266 client.getOutputStream();
792 * java.net.Socket#getOutputStream()
800 OutputStream os = client.getOutputStream();
822 Thread thread = new Thread(runnable, "Socket.getOutputStream");
841 OutputStream out = pingClient.getOutputStream();
878 s.getOutputStream();
1120 OutputStream theOutput = worker.getOutputStream();
1157 OutputStream theOutput = worker.getOutputStream();
1213 OutputStream theOutput = worker.getOutputStream();
1266 theOutput = worker.getOutputStream();
[all...]
/libcore/luni/src/test/java/libcore/java/lang/
H A DProcessBuilderTest.java61 OutputStream out = process.getOutputStream();
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
H A DHttpURLConnectionTest.java95 socket.getOutputStream().write((
110 socket.getOutputStream().write((
159 * org.apache.harmony.luni.internal.net.www.http.getOutputStream()
177 c.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/test/java/libcore/javax/net/
H A DServerSocketFactoryTest.java68 s.getOutputStream().write(data);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DServerSocketChannelTest.java471 OutputStream out = socket.getOutputStream();
492 OutputStream out = clientSocket.getOutputStream();
603 OutputStream out = socket.getOutputStream();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DHandshakeCompletedEventTest.java438 OutputStream ostream = clientSocket.getOutputStream();
501 OutputStream ostream = socket.getOutputStream();
H A DSSLSessionTest.java533 OutputStream ostream = clientSocket.getOutputStream();
598 OutputStream ostream = socket.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);
/libcore/support/src/test/java/tests/http/
H A DMockWebServer.java270 OutputStream out = new BufferedOutputStream(socket.getOutputStream());
294 if (!processOneRequest(raw.getInputStream(), raw.getOutputStream(), raw)) {

Completed in 2953 milliseconds

12