HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 226 - 250 of 1945) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
QuotedPrintable.java 58 buffer.write((char) ((u << 4) + l));
63 buffer.write(b);
  /frameworks/support/v4/java/android/support/v4/util/
LogWriter.java 51 @Override public void write(char[] buf, int offset, int count) { method in class:LogWriter
  /libcore/luni/src/main/java/java/io/
DataOutput.java 21 * Defines an interface for classes that are able to write big-endian typed data to some
37 * the buffer to write.
41 public abstract void write(byte[] buffer) throws IOException; method in interface:DataOutput
48 * the buffer to write.
50 * the index of the first byte in {@code buffer} to write.
52 * the number of bytes from the {@code buffer} to write.
56 public abstract void write(byte[] buffer, int offset, int count) throws IOException; method in interface:DataOutput
62 * the byte to write.
67 public abstract void write(int oneByte) throws IOException; method in interface:DataOutput
73 * the boolean value to write
    [all...]
EmulatedFieldsForDumping.java 30 // Record the ObjectOutputStream that created this PutField for checking in 'write'.
186 * Write the field values to the specified ObjectOutput.
196 public void write(ObjectOutput output) throws IOException { method in class:EmulatedFieldsForDumping
198 throw new IllegalArgumentException("Attempting to write to a different stream than the one that created this PutField");
FilterOutputStream.java 96 * the buffer to write.
98 * the index of the first byte in {@code buffer} to write.
100 * the number of bytes in {@code buffer} to write.
109 public void write(byte[] buffer, int offset, int length) throws IOException { method in class:FilterOutputStream
112 // Call write() instead of out.write() since subclasses could
113 // override the write() method.
114 write(buffer[offset + i]);
128 public void write(int oneByte) throws IOException { method in class:FilterOutputStream
129 out.write(oneByte)
    [all...]
Writer.java 27 * needs to be subclassed, and at least the {@link #write(char[], int, int)},
89 * the non-null array containing characters to write.
93 public void write(char[] buf) throws IOException { method in class:Writer
94 write(buf, 0, buf.length); method
102 * the non-null character array to write.
104 * the index of the first character in {@code buf} to write.
106 * the maximum number of characters to write.
113 public abstract void write(char[] buf, int offset, int count) throws IOException; method in class:Writer
120 * the character to write to the target.
124 public void write(int oneChar) throws IOException method in class:Writer
140 public void write(String str) throws IOException { method in class:Writer
141 write(str, 0, str.length()); method
160 public void write(String str, int offset, int count) throws IOException { method in class:Writer
167 write(buf, 0, buf.length); method
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
DatagramChannel.java 37 * invoking {@code read} or {@code write}, a connected channel is required.
39 * Datagram channels are thread-safe; only one thread can read or write at the
71 * and write operations, so this method returns (
105 * write operations being processed at the time the method is called. The
135 * write operations being underway. It does not have any effect if the
188 * is just like a regular write operation.
329 * has the same behavior as the {@code write} method in the
332 * @see java.nio.channels.WritableByteChannel#write(java.nio.ByteBuffer)
350 public abstract int write(ByteBuffer source) throws IOException; method in class:DatagramChannel
357 * has the same behavior as the {@code write} method in th
390 public abstract long write(ByteBuffer[] sources, int offset, int length) method in class:DatagramChannel
422 public synchronized final long write(ByteBuffer[] sources) method in class:DatagramChannel
    [all...]
SocketChannel.java 47 * output side of the channel; subsequent write operations throw a
49 * is blocked in a write operation, an {@link AsynchronousCloseException} will
52 * Socket channels are thread-safe, no more than one thread can read or write at
55 * processing, calls to {@code read} and {@code write} will block.
117 * connect, read and write operation, so this method returns
162 * write operations while connecting. It executes the same security checks
205 * read} and {@code write} operations while connecting.
334 * The call may block if other threads are also attempting to write to the
344 * if another thread closes the channel during the write.
355 * @see java.nio.channels.WritableByteChannel#write(java.nio.ByteBuffer
357 public abstract int write(ByteBuffer source) throws IOException; method in class:SocketChannel
396 public abstract long write(ByteBuffer[] sources, int offset, int length) throws IOException; method in class:SocketChannel
422 public synchronized final long write(ByteBuffer[] sources) throws IOException { method in class:SocketChannel
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
JarOutputStream.java 26 * The {@code JarOutputStream} is used to write data in the {@code JarFile}
39 * the {@code OutputStream} to write to
53 this.manifest.write(this);
62 * the {@code OutputStream} to write to.
75 * the {@code ZipEntry} to write to.
  /libcore/luni/src/main/java/java/util/zip/
ZipOutputStream.java 29 * Used to write (compress) data into zip files.
31 * <p>{@code ZipOutputStream} is used to write {@link ZipEntry}s to the underlying
35 * <p>While {@code DeflaterOutputStream} can write compressed zip file
36 * entries, this extension can write uncompressed entries as well.
52 * zos.write(bytes);
145 // Write the DataDescriptor
192 cDir.write(nameBytes);
195 cDir.write(currentEntry.extra);
199 cDir.write(commentBytes);
230 // Write Central Dir En
407 public void write(byte[] buffer, int offset, int byteCount) throws IOException { method in class:ZipOutputStream
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
CipherOutputStream.java 26 * This class wraps an output stream and a cipher so that {@code write} methods
44 * the output stream to write data to.
60 * the output stream to write the data to.
70 * the byte to write.
74 @Override public void write(int b) throws IOException { method in class:CipherOutputStream
91 @Override public void write(byte[] b, int off, int len) throws IOException { method in class:CipherOutputStream
97 out.write(result);
129 out.write(result);
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSSerializer.java 50 * <code>LSSerializer.write</code>, outputs the entity expansion but no
269 * <code>LSSerializer.write</code> for details on how to find the output
393 public boolean write(Node nodeArg, method in interface:LSSerializer
398 * A convenience method that acts as if <code>LSSerializer.write</code>
403 * @param uri The URI to write to.
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidOutputStreamWriterTest.java 33 a.write(str, 0, 4);
34 a.write('A');
  /libcore/support/src/test/java/libcore/java/io/
NullPrintStream.java 60 public void write(byte[] buffer, int offset, int length) {} method in class:NullPrintStream
61 public void write(int oneByte) {} method in class:NullPrintStream
  /libcore/support/src/test/java/tests/support/
Support_ASimpleOutputStream.java 55 // public void write(byte buffer[]) throws IOException {
60 // write(buffer[i]);
65 // public void write(byte buffer[], int offset, int count) throws IOException {
73 // write(buffer[i]);
78 public void write(int oneByte) throws IOException { method in class:Support_ASimpleOutputStream
  /packages/apps/Calculator/src/com/android/calculator2/
HistoryEntry.java 43 void write(DataOutput out) throws IOException { method in class:HistoryEntry
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
CopyUtils.java 110 * Methods renamed to IOUtils.write() or IOUtils.copy().
133 * @param output the <code>OutputStream</code> to write to
138 output.write(input);
150 * @param output the <code>Writer</code> to write to
164 * @param output the <code>Writer</code> to write to
188 * @param output the <code>OutputStream</code> to write to
200 output.write(buffer, 0, n);
213 * @param output the <code>Writer</code> to write to
225 output.write(buffer, 0, n);
240 * @param output the <code>Writer</code> to write to
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
tea575x-tuner.h 20 * along with this program; if not, write to the Free Software
31 void (*write)(struct snd_tea575x *tea, unsigned int val); member in struct:snd_tea575x_ops
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
tea575x-tuner.h 20 * along with this program; if not, write to the Free Software
31 void (*write)(struct snd_tea575x *tea, unsigned int val); member in struct:snd_tea575x_ops
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 3 File-like objects that read from or write to a bsddb record.
16 f.write(buf) # write at current position
17 f.writelines(list) # for line in list: f.write(line)
126 def write(self, s): member in class:DBRecIO
138 self.write(string.joinfields(list, ''))
158 f.write(line)
161 raise RuntimeError, 'write failed'
165 f.write(lines[1])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 3 File-like objects that read from or write to a bsddb record.
16 f.write(buf) # write at current position
17 f.writelines(list) # for line in list: f.write(line)
126 def write(self, s): member in class:DBRecIO
138 self.write(string.joinfields(list, ''))
158 f.write(line)
161 raise RuntimeError, 'write failed'
165 f.write(lines[1])
  /system/core/include/utils/
Flattenable.h 60 // write a POD structure
62 static void write(void*& buffer, size_t& size, const T& value) { function in class:android::FlattenableUtils
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
BlockDevice.java 16 * along with this library; If not, write to the Free Software Foundation, Inc.,
55 * @param src the source {@code ByteBuffer} to write to the device
57 * @throws IOException on write error
59 * or the write would go beyond the end of the device
62 public abstract void write(long devOffset, ByteBuffer src) method in interface:BlockDevice
69 * @throws IOException on write error
  /external/jmdns/src/javax/jmdns/impl/
DNSOutgoing.java 46 this.write(value & 0xFF);
92 // write utf length
94 // write utf data
162 rec.write(record);
166 write(byteArray, 0, byteArray.length); method
248 _questionsBytes.write(byteArray, 0, byteArray.length);
282 _answersBytes.write(byteArray, 0, byteArray.length);
302 _authoritativeAnswersBytes.write(byteArray, 0, byteArray.length);
321 _additionalsAnswersBytes.write(byteArray, 0, byteArray.length);
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DeflaterOutputStreamTest.java 105 dos.write(byteArray);
122 dos.write(outPutBuf);
169 dos.write(byteArray);
190 dos.write(byteArray);
214 // Test to write to a closed DeflaterOutputStream
216 dos.write(5);
217 fail("DeflaterOutputStream Able To Write After Being Closed.");
221 // Test to write to a FileOutputStream that should have been closed
225 fos.write(("testing").getBytes());
226 fail("FileOutputStream Able To Write After Being Closed.")
    [all...]

Completed in 538 milliseconds

1 2 3 4 5 6 7 8 91011>>