Searched defs:write (Results 1 - 25 of 51) sorted by relevance

123

/packages/apps/Gallery2/jni_jpegstream/src/
H A Doutputstream_wrapper.cpp22 int32_t OutputStreamWrapper::write(int32_t length, int32_t offset) { function in class:OutputStreamWrapper
32 LOGE("Uninitialized method ID for OutputStream write function.");
35 // Call OutputStream write with byte array.
/packages/apps/Camera2/src/com/android/camera/stats/profiler/
H A DWriter.java20 * Used to write strings to an arbitrary output source.
24 * Used to write messages to another stream or object.
26 public void write(String message); method in interface:Writer
/packages/apps/DocumentsUI/src/com/android/documentsui/base/
H A DDurable.java26 public void write(DataOutputStream out) throws IOException; method in interface:Durable
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DEOLConvertingOutputStream.java31 public void write(int oneByte) throws IOException { method in class:EOLConvertingOutputStream
34 super.write('\r');
37 super.write(oneByte);
44 super.write('\n');
H A DCountingOutputStream.java39 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:CountingOutputStream
40 mOutputStream.write(buffer, offset, count);
45 public void write(int oneByte) throws IOException { method in class:CountingOutputStream
46 mOutputStream.write(oneByte);
/packages/apps/Email/src/com/android/email/mail/transport/
H A DStatusOutputStream.java34 public void write(int oneByte) throws IOException { method in class:StatusOutputStream
35 super.write(oneByte);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DClosedOutputStream.java24 * write something to the stream.
46 public void write(int b) throws IOException { method in class:ClosedOutputStream
47 throw new IOException("write(" + b + ") failed: stream is closed");
H A DCountingOutputStream.java39 * @param out the OutputStream to write to
50 * @param b the bytes to write, not null
52 * @see java.io.OutputStream#write(byte[])
54 public void write(byte[] b) throws IOException { method in class:CountingOutputStream
56 super.write(b);
63 * @param b the bytes to write, not null
65 * @param len the maximum number of bytes to write
67 * @see java.io.OutputStream#write(byte[], int, int)
69 public void write(byte[] b, int off, int len) throws IOException { method in class:CountingOutputStream
71 super.write(
82 public void write(int b) throws IOException { method in class:CountingOutputStream
[all...]
H A DDemuxOutputStream.java82 * @param ch the byte to write to stream
86 public void write( int ch ) method in class:DemuxOutputStream
92 output.write( ch );
H A DNullOutputStream.java40 * @param b The bytes to write
42 * @param len The number of bytes to write
44 public void write(byte[] b, int off, int len) { method in class:NullOutputStream
50 * @param b The byte to write
52 public void write(int b) { method in class:NullOutputStream
58 * @param b The bytes to write
61 public void write(byte[] b) throws IOException { method in class:NullOutputStream
H A DNullWriter.java44 * @param idx The character to write
46 public void write(int idx) { method in class:NullWriter
52 * @param chr The characters to write
54 public void write(char[] chr) { method in class:NullWriter
60 * @param chr The characters to write
62 * @param end The number of characters to write
64 public void write(char[] chr, int st, int end) { method in class:NullWriter
70 * @param str The string to write
72 public void write(String str) { method in class:NullWriter
78 * @param str The string to write
82 public void write(String str, int st, int end) { method in class:NullWriter
[all...]
H A DProxyOutputStream.java45 * Invokes the delegate's <code>write(int)</code> method.
46 * @param idx the byte to write
49 public void write(int idx) throws IOException { method in class:ProxyOutputStream
50 out.write(idx);
54 * Invokes the delegate's <code>write(byte[])</code> method.
55 * @param bts the bytes to write
58 public void write(byte[] bts) throws IOException { method in class:ProxyOutputStream
59 out.write(bts);
63 * Invokes the delegate's <code>write(byte[])</code> method.
64 * @param bts the bytes to write
69 public void write(byte[] bts, int st, int end) throws IOException { method in class:ProxyOutputStream
[all...]
H A DProxyWriter.java28 * methods being called, such as write(char[]) to write(char[], int, int)
29 * and write(String) to write(String, int, int).
47 * Invokes the delegate's <code>write(int)</code> method.
48 * @param idx the character to write
51 public void write(int idx) throws IOException { method in class:ProxyWriter
52 out.write(idx);
56 * Invokes the delegate's <code>write(char[])</code> method.
57 * @param chr the characters to write
60 public void write(char[] chr) throws IOException { method in class:ProxyWriter
71 public void write(char[] chr, int st, int end) throws IOException { method in class:ProxyWriter
80 public void write(String str) throws IOException { method in class:ProxyWriter
91 public void write(String str, int st, int end) throws IOException { method in class:ProxyWriter
[all...]
H A DTeeOutputStream.java31 /** the second OutputStream to write to */
46 * @param b the bytes to write
49 public synchronized void write(byte[] b) throws IOException { method in class:TeeOutputStream
50 super.write(b);
51 this.branch.write(b);
56 * @param b the bytes to write
58 * @param len The number of bytes to write
61 public synchronized void write(byte[] b, int off, int len) throws IOException { method in class:TeeOutputStream
62 super.write(b, off, len);
63 this.branch.write(
71 public synchronized void write(int b) throws IOException { method in class:TeeOutputStream
[all...]
H A DFileWriterWithEncoding.java60 * @param filename the name of the file to write to, not null
72 * @param filename the name of the file to write to, not null
85 * @param filename the name of the file to write to, not null
97 * @param filename the name of the file to write to, not null
110 * @param filename the name of the file to write to, not null
122 * @param filename the name of the file to write to, not null
135 * @param file the file to write to, not null
147 * @param file the file to write to, not null
161 * @param file the file to write to, not null
173 * @param file the file to write t
265 public void write(int idx) throws IOException { method in class:FileWriterWithEncoding
274 public void write(char[] chr) throws IOException { method in class:FileWriterWithEncoding
285 public void write(char[] chr, int st, int end) throws IOException { method in class:FileWriterWithEncoding
294 public void write(String str) throws IOException { method in class:FileWriterWithEncoding
305 public void write(String str, int st, int end) throws IOException { method in class:FileWriterWithEncoding
[all...]
H A DLockableFileWriter.java66 * @param fileName the file to write to, not null
77 * @param fileName file to write to, not null
89 * @param fileName the file to write to, not null
103 * @param file the file to write to, not null
114 * @param file the file to write to, not null
126 * @param file the file to write to, not null
139 * @param file the file to write to, not null
151 * @param file the file to write to, not null
188 * Tests that we can write to the lock directory.
191 * @throws IOException if we cannot write t
281 public void write(int idx) throws IOException { method in class:LockableFileWriter
290 public void write(char[] chr) throws IOException { method in class:LockableFileWriter
301 public void write(char[] chr, int st, int end) throws IOException { method in class:LockableFileWriter
310 public void write(String str) throws IOException { method in class:LockableFileWriter
321 public void write(String str, int st, int end) throws IOException { method in class:LockableFileWriter
[all...]
H A DThresholdingOutputStream.java34 * is actually reached, since it triggers when a pending write operation would
91 public void write(int b) throws IOException method in class:ThresholdingOutputStream
94 getStream().write(b);
107 public void write(byte b[]) throws IOException method in class:ThresholdingOutputStream
110 getStream().write(b);
121 * @param len The number of bytes to write.
125 public void write(byte b[], int off, int len) throws IOException method in class:ThresholdingOutputStream
128 getStream().write(b, off, len);
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/utility/
H A DCountingOutputStream.java38 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:CountingOutputStream
39 mOutputStream.write(buffer, offset, count);
44 public void write(int oneByte) throws IOException { method in class:CountingOutputStream
45 mOutputStream.write(oneByte);
H A DEOLConvertingOutputStream.java30 public void write(int oneByte) throws IOException { method in class:EOLConvertingOutputStream
33 super.write('\r');
36 super.write(oneByte);
43 super.write('\n');
/packages/apps/Camera2/src/com/android/camera/util/
H A DCaptureDataSerializer.java48 public void write(Writer writer) throws IOException; method in interface:CaptureDataSerializer.Writeable
64 * Generate a human-readable string of the given capture request and write
82 Log.e(TAG, "Could not write capture data to file.", ex);
94 public void write(Writer writer) throws IOException {
96 writer.write(title + '\n');
100 writer.write(String.format(" %s\n", key.getName()));
101 writer.write(String.format(" %s\n",
117 public void write(Writer writer) throws IOException {
119 writer.write(String.format(title) + '\n');
123 writer.write(Strin
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DInterruptableOutputStream.java37 public void write(int oneByte) throws IOException { method in class:InterruptableOutputStream
39 mOutputStream.write(oneByte);
43 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:InterruptableOutputStream
48 mOutputStream.write(buffer, offset, bytesCount);
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DMetaData.java160 * Writes the meta-data for the CalendarProvider. The values to write are
170 public void write(String timezone, long begin, long end, int startDay, int endDay) { method in class:MetaData
185 * Writes the meta-data for the CalendarProvider. The values to write are
/packages/services/BuiltInPrintService/src/com/android/bips/discovery/
H A DDiscoveredPrinter.java127 public void write(JsonWriter writer) throws IOException { method in class:DiscoveredPrinter
176 write(new JsonWriter(sw));
/packages/services/Car/tests/obd2_test/src/com/android/car/obd2/test/
H A DMockObd2UnderlyingTransport.java49 public void write(int b) throws IOException { method in class:MockObd2UnderlyingTransport.MockOutputStream
56 throw new IOException("data write past expectation.");
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/
H A DDiagnosticJson.java69 void write(T value) { method in class:DiagnosticJson.Builder.WriteOnce
126 mType.write(jsonReader.nextString());
129 mTimestamp.write(jsonReader.nextLong());
142 mDtc.write(jsonReader.nextString());

Completed in 473 milliseconds

123