Searched refs:write (Results 176 - 200 of 1678) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DCancelRequestMessage_1_2.java18 * 2 along with this work; if not, write to the Free Software Foundation,
66 public void write(org.omg.CORBA.portable.OutputStream ostream) { method in class:CancelRequestMessage_1_2
67 super.write(ostream);
/openjdk7/jdk/src/share/classes/javax/sound/midi/spi/
H A DMidiFileWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
37 * that implement this interface can write one or more types of MIDI file from
56 * Obtains the file types that this file writer can write from the
69 * @param fileType the file type for which write capabilities are queried
88 * @param fileType the file type for which write capabilities are queried
118 public abstract int write(Sequence in, int fileType, OutputStream out) throws IOException; method in class:MidiFileWriter
134 public abstract int write(Sequence in, int fileType, File out) throws IOException; method in class:MidiFileWriter
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DEditorKit.java18 * 2 along with this work; if not, write to the Free Software Foundation,
154 * @param out The stream to write to
155 * @param doc The source for the write.
158 * @param len The amount to write out >= 0.
163 public abstract void write(OutputStream out, Document doc, int pos, int len) method in class:EditorKit
192 * generally be the preferred way to write the data.
196 * @param out The stream to write to
197 * @param doc The source for the write.
200 * @param len The amount to write out >= 0.
205 public abstract void write(Write method in class:EditorKit
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DCopiedFile.java18 * 2 along with this work; if not, write to the Free Software Foundation,
38 public void write(final File parentDir) { method in class:CopiedFile
51 out.write(bit);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DOutputUtil.java18 * 2 along with this work; if not, write to the Free Software Foundation,
44 * The expected use is to write out RFC822 style headers to an output
63 out.write((byte)s.charAt(i));
67 out.write(newline);
/openjdk7/jdk/test/java/io/BufferedWriter/
H A DCleanup.java16 * 2 along with this work; if not, write to the Free Software Foundation,
71 bw.write(new char[1024], 0, (1024));
83 // A write to a properly closed Writer should raise an exception
84 bw.write('a');
/openjdk7/jdk/test/java/io/Serializable/available/
H A DAvailable.java16 * 2 along with this work; if not, write to the Free Software Foundation,
39 // write stream containing short data block
41 oout.write(new byte[100]);
55 // write stream containing long data block
57 oout.write(new byte[500]);
/openjdk7/jdk/test/java/io/
H A DUnicode.java16 * 2 along with this work; if not, write to the Free Software Foundation,
111 bo.write(BOM_HIGH);
112 bo.write(BOM_LOW);
114 bo.write(BOM_LOW);
115 bo.write(BOM_HIGH);
121 bo.write(c >> 8);
122 bo.write(c & 0xff);
124 bo.write(c & 0xff);
125 bo.write(c >> 8);
/openjdk7/jdk/test/java/lang/instrument/PremainClass/
H A DCreateFiles.java16 * 2 along with this work; if not, write to the Free Software Foundation,
37 fos.write( s.getBytes("UTF8") );
38 fos.write( "\n".getBytes("UTF8") );
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DDisconnect.java16 * 2 along with this work; if not, write to the Free Software Foundation,
52 * Connect DatagramChannel to a server, write a datagram and disconnect. Invoke
63 dc.write(ByteBuffer.wrap("hello".getBytes()));
71 dc.write(ByteBuffer.wrap("another message".getBytes()));
72 throw new RuntimeException("write should fail, not connected");
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DForce.java16 * 2 along with this work; if not, write to the Free Software Foundation,
40 // 4434115: FileChannel.write() fails when preceded by force() operation
47 fc.write(ByteBuffer.wrap(srcData));
49 fc.write(ByteBuffer.wrap(srcData));
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DContent.java18 * 2 along with this work; if not, write to the Free Software Foundation,
44 write(contentBuilder);
66 public abstract void write(StringBuilder contentBuilder); method in class:Content
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DEncKrbPrivPart.java17 * 2 along with this work; if not, write to the Free Software Foundation,
148 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x00), temp);
150 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x01), timestamp.asn1Encode());
155 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x02), temp);
161 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x03), temp);
163 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x04), sAddress.asn1Encode());
165 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x05), rAddress.asn1Encode());
168 temp.write(DerValue.tag_Sequence, bytes);
170 bytes.write(DerValue.createTag(DerValue.TAG_APPLICATION, true, (byte) 0x1C), temp);
H A DKRBCred.java17 * 2 along with this work; if not, write to the Free Software Foundation,
166 out.write(DerValue.createTag(DerValue.TAG_CONTEXT,
170 out.write(DerValue.createTag(DerValue.TAG_CONTEXT,
174 temp.write(tickets[i].asn1Encode());
177 bytes.write(DerValue.tag_SequenceOf, temp);
178 out.write(DerValue.createTag(DerValue.TAG_CONTEXT,
180 out.write(DerValue.createTag(DerValue.TAG_CONTEXT,
183 bytes.write(DerValue.tag_Sequence, out);
185 out.write(DerValue.createTag(DerValue.TAG_APPLICATION,
/openjdk7/jdk/test/sun/nio/cs/
H A DTestUTF_32.java16 * 2 along with this work; if not, write to the Free Software Foundation,
78 os.write((i>>24) & 0xff);
79 os.write((i>>16) & 0xff);
80 os.write((i>>8) & 0xff);
81 os.write(i & 0xff);
83 os.write(i & 0xff);
84 os.write((i>>8) & 0xff);
85 os.write((i>>16) & 0xff);
86 os.write((i>>24) & 0xff);
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Client.java18 * 2 along with this work; if not, write to the Free Software Foundation,
575 digestResp.write("charset=".getBytes(encoding));
576 digestResp.write(charset);
577 digestResp.write(',');
580 digestResp.write(("username=\"" +
584 digestResp.write(("realm=\"" +
588 digestResp.write("nonce=\"".getBytes(encoding));
590 digestResp.write('"');
591 digestResp.write(',');
594 digestResp.write(("n
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFParser.java18 * 2 along with this work; if not, write to the Free Software Foundation,
56 /** A stream to which to write warnings and debugging information
119 write((char)b);
128 public void write(String s) method in class:RTFParser
135 write(s.charAt(index));
151 public void write(char ch) method in class:RTFParser
226 write(ch);
260 write(ch);
282 binaryBuf.write(ch);
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DDatagramChannel.java18 * 2 along with this work; if not, write to the Free Software Foundation,
49 * #write(java.nio.ByteBuffer) write} methods, since those methods do not
263 * on read or write operations that are already in progress at the moment
305 * on read or write operations that are already in progress at the moment
407 * {@link WritableByteChannel#write(java.nio.ByteBuffer) write} operation.
420 * already initiated a write operation upon this channel, however, then an
525 public abstract int write(ByteBuffer src) throws IOException; method in class:DatagramChannel
544 public abstract long write(ByteBuffe method in class:DatagramChannel
564 public final long write(ByteBuffer[] srcs) throws IOException { method in class:DatagramChannel
[all...]
H A DSeekableByteChannel.java18 * 2 along with this work; if not, write to the Free Software Foundation,
80 int write(ByteBuffer src) throws IOException; method in interface:SeekableByteChannel
102 * indication. A later attempt to write bytes at such a position will cause
H A DSocketChannel.java18 * 2 along with this work; if not, write to the Free Software Foundation,
62 * thread while another thread is blocked in a write operation on the socket's
108 * or write operation while an invocation of one of these methods is in
267 * <p> Once shutdown for writing then further attempts to write to the
333 * <p> This method may be invoked at any time. If a read or write
401 * <p> This method may be invoked at any time. If a read or write
479 public abstract int write(ByteBuffer src) throws IOException; method in class:SocketChannel
485 public abstract long write(ByteBuffer[] srcs, int offset, int length) method in class:SocketChannel
492 public final long write(ByteBuffer[] srcs) throws IOException { method in class:SocketChannel
493 return write(src
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DFileImageOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
53 * Constructs a <code>FileImageOutputStream</code> that will write
56 * @param f a <code>File</code> to write to.
61 * and does not allow write access to the file.
73 * Constructs a <code>FileImageOutputStream</code> that will write
76 * @param raf a <code>RandomAccessFile</code> to write to.
116 public void write(int b) throws IOException { method in class:FileImageOutputStream
118 raf.write(b);
122 public void write(byte[] b, int off, int len) throws IOException { method in class:FileImageOutputStream
124 raf.write(
[all...]
H A DMemoryCacheImageOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
35 * the current write position. The only constructor takes an
37 * read/modify/write operations. Reading can occur only on parts of
49 * Constructs a <code>MemoryCacheImageOutputStream</code> that will write
52 * @param stream an <code>OutputStream</code> to write to.
110 public void write(int b) throws IOException { method in class:MemoryCacheImageOutputStream
112 cache.write(b, streamPos);
116 public void write(byte[] b, int off, int len) throws IOException { method in class:MemoryCacheImageOutputStream
118 cache.write(b, off, len, streamPos);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DTypeScriptWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
48 public void write(char[] cbuf, int off, int len) throws IOException { method in class:TypeScriptWriter
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DSerializationTester.java18 * 2 along with this work; if not, write to the Free Software Foundation,
44 public void write(int b) {}
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/NetworkConnection/src/com/sun/hotspot/igv/connection/
H A DClient.java18 * 2 along with this work; if not, write to the Free Software Foundation,
64 socket.getOutputStream().write('y');
75 socket.getOutputStream().write('n');
88 socket.getOutputStream().write('y');
91 socket.getOutputStream().write('n');

Completed in 688 milliseconds

1234567891011>>