Searched defs:write (Results 76 - 100 of 488) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/nio/channels/AsynchronousSocketChannel/
H A DLeaky.java16 * 2 along with this work; if not, write to the Free Software Foundation,
74 void write() throws Exception { method in class:Leaky.Connection
75 peer.write(ByteBuffer.wrap("X".getBytes()));
107 // write data so that the read can complete
109 conn.write();
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DComment.java18 * 2 along with this work; if not, write to the Free Software Foundation,
83 public void write(StringBuilder contentBuilder) { method in class:Comment
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJNI.java18 * 2 along with this work; if not, write to the Free Software Foundation,
46 * If you write code that depends on this, you do so at your own
61 public void write(OutputStream o, TypeElement clazz) throws Util.Exit { method in class:JNI
/openjdk7/langtools/test/tools/javac/6400383/
H A DT6400383.java16 * 2 along with this work; if not, write to the Free Software Foundation,
67 public void write(int i) { method in class:T6400383.StringStream
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DAppOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
48 // One element array used to implement the write(byte) method
59 synchronized public void write(byte b[], int off, int len) method in class:AppOutputStream
90 // This lets application synchronize read and write streams
118 r.write(b, off, howmuch);
134 synchronized public void write(int i) throws IOException { method in class:AppOutputStream
136 write(oneByte, 0, 1);
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DClassConstantData.java18 * 2 along with this work; if not, write to the Free Software Foundation,
64 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { method in class:ClassConstantData
H A DConstantPoolData.java18 * 2 along with this work; if not, write to the Free Software Foundation,
47 abstract void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException; method in class:ConstantPoolData
H A DFieldConstantData.java18 * 2 along with this work; if not, write to the Free Software Foundation,
57 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { method in class:FieldConstantData
H A DLocalVariableTable.java18 * 2 along with this work; if not, write to the Free Software Foundation,
120 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { method in class:LocalVariableTable
H A DNameAndTypeConstantData.java18 * 2 along with this work; if not, write to the Free Software Foundation,
57 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { method in class:NameAndTypeConstantData
H A DNumberConstantData.java18 * 2 along with this work; if not, write to the Free Software Foundation,
53 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { method in class:NumberConstantData
H A DStringConstantData.java18 * 2 along with this work; if not, write to the Free Software Foundation,
53 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { method in class:StringConstantData
H A DStringExpressionConstantData.java18 * 2 along with this work; if not, write to the Free Software Foundation,
56 void write(Environment env, DataOutputStream out, ConstantPool tab) throws IOException { method in class:StringExpressionConstantData
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DCompressOutputStream.java16 * 2 along with this work; if not, write to the Free Software Foundation,
43 public void write(int b) throws IOException { method in class:CompressOutputStream
56 public void write(byte b[], int off, int len) throws IOException { method in class:CompressOutputStream
59 * call the other write method for every byte in the array. It
64 write(b[off + i]);
74 if (bufPos == 5) { // write next word when we have 5 codes
77 out.write((pack >>> 24) & 0xFF);
78 out.write((pack >>> 16) & 0xFF);
79 out.write((pack >>> 8) & 0xFF);
80 out.write((pac
[all...]
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/unicast/
H A DCompressOutputStream.java16 * 2 along with this work; if not, write to the Free Software Foundation,
43 public void write(int b) throws IOException { method in class:CompressOutputStream
56 public void write(byte b[], int off, int len) throws IOException { method in class:CompressOutputStream
59 * call the other write method for every byte in the array. It
64 write(b[off + i]);
74 if (bufPos == 5) { // write next word when we have 5 codes
77 out.write((pack >>> 24) & 0xFF);
78 out.write((pack >>> 16) & 0xFF);
79 out.write((pack >>> 8) & 0xFF);
80 out.write((pac
[all...]
/openjdk7/jdk/src/share/classes/sun/net/
H A DTelnetOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
32 * This class overrides write to do CRLF processing as specified in
96 public void write(int c) throws IOException { method in class:TelnetOutputStream
98 super.write(c);
104 super.write(0);
105 super.write(c);
110 super.write('\r');
111 super.write('\n');
118 super.write('\r');
122 super.write(
130 public void write(byte bytes[], int off, int length) throws IOException { method in class:TelnetOutputStream
[all...]
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DFixedLengthOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
34 * a class which allows the caller to write up to a defined
36 * write the pre-defined number or else an exception will be thrown
54 public void write (int b) throws IOException { method in class:FixedLengthOutputStream
62 out.write(b);
66 public void write (byte[]b, int off, int len) throws IOException { method in class:FixedLengthOutputStream
76 throw new IOException ("too many bytes to write to stream");
78 out.write(b, off, len);
H A DUndefLengthOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
34 * a class which allows the caller to write an indefinite
50 public void write (int b) throws IOException { method in class:UndefLengthOutputStream
54 out.write(b);
57 public void write (byte[]b, int off, int len) throws IOException { method in class:UndefLengthOutputStream
61 out.write(b, off, len);
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DHttpCaptureOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
44 public void write(int b) throws IOException { method in class:HttpCaptureOutputStream
46 out.write(b);
50 public void write(byte[] ba) throws IOException { method in class:HttpCaptureOutputStream
54 out.write(ba);
58 public void write(byte[] b, int off, int len) throws IOException { method in class:HttpCaptureOutputStream
62 out.write(b, off, len);
H A DPosterOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
36 * when close() is called, it is no longer possible to write
59 public synchronized void write(int b) { method in class:PosterOutputStream
63 super.write (b);
72 * @param len the number of bytes to write.
74 public synchronized void write(byte b[], int off, int len) { method in class:PosterOutputStream
78 super.write (b, off, len);
98 * After close() has been called, it is no longer possible to write
99 * to this stream. Further calls to write will have no effect.
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DHttpSendOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
32 * notified of attempts to write to it. This allows the HttpSendSocket
55 * a write is attempted, the owner will be notified and a new underlying
66 public void write(int b) throws IOException method in class:HttpSendOutputStream
70 out.write(b);
79 public void write(byte b[], int off, int len) throws IOException method in class:HttpSendOutputStream
85 out.write(b, off, len);
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSocketDispatcher.java18 * 2 along with this work; if not, write to the Free Software Foundation,
32 * for read and write operations.
46 int write(FileDescriptor fd, long address, int len) throws IOException { method in class:SocketDispatcher
/openjdk7/langtools/test/tools/javadoc/T4994049/
H A DT4994049.java16 * 2 along with this work; if not, write to the Free Software Foundation,
75 write(t, read(f).replace("\\t", "\t"));
92 static void write(File f, String s) throws IOException { method in class:T4994049
95 out.write(s);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DWriterChain.java35 * write(int val)
36 * write(char[] chars)
37 * write(char[] chars, int start, int count)
38 * write(String chars)
39 * write(String chars, int start, int count)
56 public void write(int val) throws IOException; method in interface:WriterChain
58 public void write(char[] chars) throws IOException; method in interface:WriterChain
60 public void write(char[] chars, int start, int count) throws IOException; method in interface:WriterChain
62 public void write(String chars) throws IOException; method in interface:WriterChain
64 public void write(Strin method in interface:WriterChain
[all...]
H A DWriterToASCI.java44 /** The byte stream to write to. */
51 * @param os The byte stream to write to.
63 * @param length Number of characters to write
69 public void write(char chars[], int start, int length) method in class:WriterToASCI
77 m_os.write(chars[i]);
92 public void write(int c) throws IOException method in class:WriterToASCI
94 m_os.write(c);
104 public void write(String s) throws IOException method in class:WriterToASCI
109 m_os.write(s.charAt(i));
115 * various write() method
[all...]

Completed in 42 milliseconds

1234567891011>>