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

1234567891011>>

/openjdk7/jdk/src/share/classes/java/lang/
H A DProcess.java50 * {@link #getOutputStream()},
94 abstract public OutputStream getOutputStream(); method in class:Process
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DHttpReceiveSocket.java72 socket.getOutputStream());
100 public OutputStream getOutputStream() throws IOException method in class:HttpReceiveSocket
117 getOutputStream().close(); // make sure response is sent
H A DWrappedSocket.java122 public OutputStream getOutputStream() throws IOException method in class:WrappedSocket
125 out = socket.getOutputStream();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DDataHandlerDataSource.java60 public OutputStream getOutputStream() throws IOException { method in class:DataHandlerDataSource
61 return dataHandler.getOutputStream();
/openjdk7/jdk/src/share/classes/javax/print/
H A DStreamPrintService.java78 public OutputStream getOutputStream() { method in class:StreamPrintService
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DDataSource.java64 public OutputStream getOutputStream() throws IOException; method in interface:DataSource
H A DURLDataSource.java111 * The getOutputStream method from the URL. First an attempt is
113 * succeeds, the getOutputStream method on the URLConnection
118 public OutputStream getOutputStream() throws IOException { method in class:URLDataSource
124 return url_conn.getOutputStream();
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DConnection.java43 public OutputStream getOutputStream() throws IOException; method in interface:Connection
H A DStreamRemoteCall.java69 conn.getOutputStream().write(TransportConstants.Call);
70 getOutputStream(); // creates a MarshalOutputStream
91 public ObjectOutput getOutputStream() throws IOException { method in class:StreamRemoteCall
92 return getOutputStream(false);
95 private ObjectOutput getOutputStream(boolean resultStream) method in class:StreamRemoteCall
187 DataOutputStream wr = new DataOutputStream(conn.getOutputStream());
189 getOutputStream(true); // creates a MarshalOutputStream
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DByteServer.java57 socket.getOutputStream().write(new byte[bytecount]);
58 socket.getOutputStream().flush();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/NetworkConnection/src/com/sun/hotspot/igv/connection/
H A DClient.java64 socket.getOutputStream().write('y');
75 socket.getOutputStream().write('n');
88 socket.getOutputStream().write('y');
91 socket.getOutputStream().write('n');
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DGetOutputStream.java26 @summary URLConnection.getOutputStream() fails after connect()
38 OutputStream os = urlConnection.getOutputStream();
42 throw new RuntimeException("getOutputStream failure.");
H A DStreamingOutputStream.java28 * @summary HttpURLConnection.getOutputStream streaming mode bug when called multiple times
36 * Calling HttpURLConnection.getOutputStream multiple times when streaming
66 OutputStream os1 = uc.getOutputStream();
67 OutputStream os2 = uc.getOutputStream();
/openjdk7/jdk/test/java/net/Authenticator/
H A DBasicTest4.java101 os = s.getOutputStream();
109 os = s.getOutputStream();
119 os = s.getOutputStream();
127 os = s.getOutputStream();
143 os = s.getOutputStream();
153 os = s.getOutputStream();
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DSerializer.java116 public OutputStream getOutputStream(); method in interface:Serializer
H A DWriterChain.java71 * If this method returns null, getOutputStream() must return non-null.
83 public java.io.OutputStream getOutputStream(); method in interface:WriterChain
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRemoteCall.java59 ObjectOutput getOutputStream() throws IOException; method in interface:RemoteCall
/openjdk7/jdk/test/java/net/URLConnection/
H A DRedirect307Test.java84 s.getOutputStream().write(reply.getBytes());
91 s.getOutputStream().write(reply2.getBytes());
/openjdk7/jdk/test/java/net/Socket/reset/
H A DTest.java57 s.getOutputStream().write(new byte[256]);
63 s.getOutputStream().write(new byte[256]);
68 s.getOutputStream().write("hello".getBytes());
76 s.getOutputStream().write(new byte[256]);
123 s.getOutputStream().write("data".getBytes());
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DTCPConnection.java81 public OutputStream getOutputStream() throws IOException method in class:TCPConnection
84 out = new BufferedOutputStream(socket.getOutputStream());
182 o = getOutputStream();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DByteArrayDataSource.java67 public OutputStream getOutputStream() { method in class:ByteArrayDataSource
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimePartDataSource.java91 public OutputStream getOutputStream() throws IOException { method in class:MimePartDataSource
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/
H A DFastInfosetResult.java77 public OutputStream getOutputStream() { method in class:FastInfosetResult
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DByteArrayDataSource.java73 public OutputStream getOutputStream() { method in class:ByteArrayDataSource
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DSecurityManagerClinit.java71 p.getOutputStream().close();

Completed in 73 milliseconds

1234567891011>>