/libcore/luni/src/test/java/libcore/java/net/ |
D | OldUnixSocketTest.java | 46 OutputStream clientOut = pingClient.getOutputStream(); in test_getInputStream() 51 OutputStream out = worker.getOutputStream(); in test_getInputStream() 107 OutputStream o = socket.getOutputStream(); in test_getOutputStream()
|
D | OldSocketTest.java | 186 s.getOutputStream(); in test_close() 276 java.io.OutputStream os = s.getOutputStream(); in test_getOutputStream() 282 OutputStream o = s.getOutputStream(); in test_getOutputStream() 293 o = s.getOutputStream(); in test_getOutputStream() 597 OutputStream theOutput = servSock.getOutputStream(); in test_shutdownInput() 632 OutputStream theOutput = servSock.getOutputStream(); in test_shutdownOutput() 1054 OutputStream theOutput = servSock.getOutputStream(); in test_connectLjava_net_SocketAddress() 1056 OutputStream theOutput2 = theSocket.getOutputStream(); in test_connectLjava_net_SocketAddress() 1334 OutputStream theOutput = servSock.getOutputStream(); in test_connectLjava_net_SocketAddressI() 1336 OutputStream theOutput2 = theSocket.getOutputStream(); in test_connectLjava_net_SocketAddressI() [all …]
|
D | SocketTest.java | 190 @Override protected OutputStream getOutputStream() throws IOException { return null; } in test_SocketOptions_setOption() method in SocketTest.MySocketImpl 267 OutputStream out = socket.getOutputStream(); in testWriteAfterClose() 298 socket.getOutputStream().write(data); in assertAvailableReturnsZeroAfterSocketReadsAllData() 373 OutputStream out = socket.getOutputStream(); in enqueue()
|
D | OldSocketImplFactoryTest.java | 158 protected OutputStream getOutputStream() throws IOException { in getOutputStream() method in OldSocketImplFactoryTest.MockSocketImpl
|
/libcore/luni/src/main/java/java/lang/ |
D | Process.java | 102 public abstract OutputStream getOutputStream(); in getOutputStream() method in Process
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/ |
D | HttpURLConnectionTest.java | 95 socket.getOutputStream().write(( in run() 110 socket.getOutputStream().write(( in run() 177 c.getOutputStream(); in testGetOutputStream()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | ProcessTest.java | 54 OutputStream os = p.getOutputStream(); in test_getOutputStream() 83 p.getOutputStream().close(); in test_getErrorStream()
|
D | Process2Test.java | 44 assertNotNull(p.getOutputStream()); in test_streams()
|
D | ProcessManagerTest.java | 39 OutputStream out = process.getOutputStream(); in testCat()
|
/libcore/luni/src/main/java/javax/xml/transform/stream/ |
D | StreamResult.java | 110 public OutputStream getOutputStream() { in getOutputStream() method in StreamResult
|
/libcore/luni/src/main/java/java/net/ |
D | SocketImpl.java | 187 protected abstract OutputStream getOutputStream() throws IOException; in getOutputStream() method in SocketImpl
|
D | PlainSocketImpl.java | 245 @Override protected synchronized OutputStream getOutputStream() throws IOException { in getOutputStream() method in PlainSocketImpl 430 getOutputStream().write(request.getBytes(), 0, request.getLength()); in socksSendRequest()
|
D | Socket.java | 403 public OutputStream getOutputStream() throws IOException { in getOutputStream() method in Socket 408 return impl.getOutputStream(); in getOutputStream()
|
/libcore/luni/src/main/java/java/util/logging/ |
D | SocketHandler.java | 123 super.internalSetOutputStream(new BufferedOutputStream(this.socket.getOutputStream())); in initSocket()
|
/libcore/luni/src/main/java/libcore/net/url/ |
D | FtpURLConnection.java | 222 ctrlOutput = controlSocket.getOutputStream(); in connectInternal() 337 public OutputStream getOutputStream() throws IOException { in getOutputStream() method in FtpURLConnection 341 return dataSocket.getOutputStream(); in getOutputStream()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
D | SocketTest.java | 266 client.getOutputStream(); in test_close() 800 OutputStream os = client.getOutputStream(); in test_getOutputStream() 841 OutputStream out = pingClient.getOutputStream(); in test_getOutputStream() 878 s.getOutputStream(); in test_getOutputStream() 1120 OutputStream theOutput = worker.getOutputStream(); in test_isInputShutdown() 1157 OutputStream theOutput = worker.getOutputStream(); in test_isOutputShutdown() 1213 OutputStream theOutput = worker.getOutputStream(); in test_sendUrgentDataI() 1266 theOutput = worker.getOutputStream(); in test_sendUrgentDataI() 1323 theOutput = worker.getOutputStream(); in test_sendUrgentDataI() 1551 OutputStream theOutput = worker.getOutputStream(); in test_shutdownInput() [all …]
|
D | SocketImplTest.java | 116 protected OutputStream getOutputStream() throws IOException { in getOutputStream() method in SocketImplTest.MockSocketImpl
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | SSLSocketBenchmark.java | 83 OutputStream out = s.getOutputStream(); in time()
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | ProcessBuilderTest.java | 61 OutputStream out = process.getOutputStream(); in testDestroyClosesEverything()
|
/libcore/luni/src/test/java/libcore/javax/net/ |
D | ServerSocketFactoryTest.java | 68 s.getOutputStream().write(data); in testSocket()
|
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
D | SSLSocketTest.java | 159 server.getOutputStream().write(serverToClient); in test_SSLSocket_getSupportedCipherSuites_connect() 165 client.getOutputStream().write(clientToServer); in test_SSLSocket_getSupportedCipherSuites_connect() 1026 OutputStream output = client.getOutputStream(); in test_SSLSocket_close() 1070 client.getOutputStream(); in test_SSLSocket_close() 1128 wrapping.getOutputStream().write(42); in test_SSLSocket_shutdownCloseOnClosedPeer() 1249 client.getOutputStream().write(new byte[sendBufferSize + extra]); in test_SSLSocket_setSoWriteTimeout() 1757 server.getOutputStream().write(new byte[] { in test_SSLSocket_ClientGetsAlertDuringHandshake_HasGoodExceptionMessage() 1762 server.getOutputStream().write(new byte[] { in test_SSLSocket_ClientGetsAlertDuringHandshake_HasGoodExceptionMessage() 1804 client.getOutputStream().write(new byte[] { in test_SSLSocket_ServerGetsAlertDuringHandshake_HasGoodExceptionMessage() 1852 client.getOutputStream().write(new byte[] { in test_SSLSocket_ServerGetsAlertDuringHandshake_HasGoodExceptionMessage() [all …]
|
/libcore/support/src/test/java/tests/http/ |
D | MockWebServer.java | 270 OutputStream out = new BufferedOutputStream(socket.getOutputStream()); in serveConnection() 294 if (!processOneRequest(raw.getInputStream(), raw.getOutputStream(), raw)) { in serveConnection()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
D | SSLSessionTest.java | 533 OutputStream ostream = clientSocket.getOutputStream(); in run() 598 OutputStream ostream = socket.getOutputStream(); in run()
|
D | HandshakeCompletedEventTest.java | 438 OutputStream ostream = clientSocket.getOutputStream(); in run() 501 OutputStream ostream = socket.getOutputStream(); in run()
|
/libcore/luni/src/main/java/java/nio/ |
D | SocketChannelImpl.java | 565 public OutputStream getOutputStream() throws IOException { in getOutputStream() method in SocketChannelImpl.SocketAdapter 566 return new BlockingCheckOutputStream(super.getOutputStream(), channel); in getOutputStream()
|