HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 426 - 450 of 4398) sorted by null

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/java/io/
FileOutputStream.java 19 * 2 along with this work; if not, write to the Free Software Foundation,
98 * Creates a file output stream to write to the file with the
114 * <code>checkWrite</code> method denies write access
123 * Creates a file output stream to write to the file with the specified
143 * <code>checkWrite</code> method denies write access
155 * Creates a file output stream to write to the file represented by
173 * <code>checkWrite</code> method denies write access
184 * Creates a file output stream to write to the file represented by
205 * <code>checkWrite</code> method denies write access
246 * Creates a file output stream to write to the specified fil
330 public void write(int b) throws IOException { method in class:FileOutputStream
332 write(new byte[] { (byte) b }, 0, 1); method
357 public void write(byte b[]) throws IOException { method in class:FileOutputStream
359 write(b, 0, b.length); method
371 public void write(byte b[], int off, int len) throws IOException { method in class:FileOutputStream
    [all...]
  /libcore/ojluni/src/main/java/java/security/
PKCS12Attribute.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
245 attribute.write(DerValue.tag_Set, attrContent);
247 attributeValue.write(DerValue.tag_Sequence, attribute);
  /libcore/ojluni/src/main/java/java/util/zip/
DeflaterOutputStream.java 19 * 2 along with this work; if not, write to the Free Software Foundation,
186 public void write(int b) throws IOException { method in class:DeflaterOutputStream
189 write(buf, 0, 1); method
200 public void write(byte[] b, int off, int len) throws IOException { method in class:DeflaterOutputStream
202 throw new IOException("write beyond end of stream");
255 out.write(buf, 0, len);
279 out.write(buf, 0, len);
InflaterOutputStream.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
51 /** Temporary write buffer. */
73 * @param out output stream to write the uncompressed data to
85 * @param out output stream to write the uncompressed data to
97 * @param out output stream to write the uncompressed data to
159 // Write the uncompressed output data block
160 out.write(buf, 0, n);
195 * @param b a single byte of compressed data to decompress and write to
201 public void write(int b) throws IOException { method in class:InflaterOutputStream
202 // Write a single byte of dat
204 write(wbuf, 0, 1); method
221 public void write(byte[] b, int off, int len) throws IOException { method in class:InflaterOutputStream
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
Extension.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
158 dos2.write(DerValue.tag_Sequence, dos1);
159 out.write(dos2.toByteArray());
163 * Write the extension to the DerOutputStream.
165 * @param out the DerOutputStream to write the extension to.
182 out.write(DerValue.tag_Sequence, dos);
PolicyInformation.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
267 * Write the PolicyInformation to the DerOutputStream.
269 * @param out the DerOutputStream to write the extension to.
278 tmp2.write(pq.getEncoded());
280 tmp.write(DerValue.tag_Sequence, tmp2);
282 out.write(DerValue.tag_Sequence, tmp);
  /packages/apps/Dialer/java/com/android/voicemail/impl/utils/
IndentingPrintWriter.java 27 * <p>Delays writing indent until first actual write on a newline, enabling indent modification
43 * Flag indicating if we're currently sitting on an empty line, and that next write should be
84 write('\n');
88 public void write(int c) { method in class:IndentingPrintWriter
90 write(singleChar, 0, 1); method
94 public void write(String s, int off, int len) { method in class:IndentingPrintWriter
97 write(buf, 0, len); method
101 public void write(char[] buf, int offset, int count) { method in class:IndentingPrintWriter
113 super.write(buf, lineStart, lineEnd - lineStart);
123 super.write('\n')
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ByteArrayOutputStream.java 134 * Write the bytes to byte array.
135 * @param b the bytes to write
137 * @param len The number of bytes to write
140 public void write(byte[] b, int off, int len) { method in class:ByteArrayOutputStream
168 * Write a byte to byte array.
169 * @param b the byte to write
172 public synchronized void write(int b) { method in class:ByteArrayOutputStream
193 public synchronized int write(InputStream in) throws IOException { method in class:ByteArrayOutputStream
245 * @param out the output stream to write to
254 out.write(buf, 0, c)
    [all...]
LockableFileWriter.java 66 * @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 to the lock director
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...]
  /system/timezone/distro/core/src/main/com/android/timezone/distro/
TimeZoneDistro.java 110 baos.write(buffer, 0, count);
158 fos.write(buffer, 0, count);
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
ReportLogHostInfoStore.java 43 // Write new metrics to a temp file to avoid invalid JSON files due to failed tests.
54 // Reopen overall JSON object to write new metrics.
58 formatWriter.write(currentLine, 0, currentLine.length());
62 formatWriter.write("{", 0 , 1);
65 formatWriter.write("\"" + mStreamName + "\":", 0, mStreamName.length() + 3);
82 formatWriter.write("}", 0, 1);
93 metricsWriter.write(line, 0, line.length());
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat16RootDirectory.java 15 * along with this library; If not, write to the Free Software Foundation, Inc.,
64 * read-write mode.
68 * @throws IOException on write error
84 protected void write(ByteBuffer data) throws IOException { method in class:Fat16RootDirectory
85 this.device.write(deviceOffset, data);
Sector.java 15 * along with this library; If not, write to the Free Software Foundation, Inc.,
80 public final void write() throws IOException { method in class:Sector
85 device.write(offset, buffer);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
RamDisk.java 15 * along with this library; If not, write to the Free Software Foundation, Inc.,
65 bos.write(buffer, 0, read);
134 public void write(long devOffset, ByteBuffer src) throws IOException { method in class:RamDisk
154 * {@link #write(long, java.nio.ByteBuffer) method}, but read-only.
  /tools/tradefederation/core/src/com/android/tradefed/util/
SizeLimitedOutputStream.java 145 * Closes the write stream
180 public synchronized void write(int data) throws IOException { method in class:SizeLimitedOutputStream
184 mCurrentOutputStream.write(data);
191 public synchronized void write(byte[] b, int off, int len) throws IOException { method in class:SizeLimitedOutputStream
195 // keep writing to output stream as long as we have something to write
199 // get how many more we can write into current
201 // decide how much we should write: either fill up free space, or write entire content
203 mCurrentOutputStream.write(b, off, (int)sizeToWrite);
204 // accounting of space left, where to write nex
    [all...]
  /art/test/121-modifiers/src-java/
Asm.java 99 out.write(b, 0, b.length);
  /art/tools/ahat/src/test/com/android/ahat/
PerformanceTest.java 31 public void write(int b) throws IOException { method in class:PerformanceTest.NullOutputStream
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
AnnotationsDirectoryItem.java 59 public void write(DexRandomAccessFile file) throws IOException { method in class:AnnotationsDirectoryItem
68 fieldAnnotation.write(file);
73 methodAnnotation.write(file);
78 parameterAnnotation.write(file);
ClassDefItem.java 53 public void write(DexRandomAccessFile file) throws IOException { method in class:ClassDefItem
StringDataItem.java 49 public void write(DexRandomAccessFile file) throws IOException { method in class:StringDataItem
59 // Write out the null byte.
  /bionic/libc/kernel/tools/
utils.py 11 sys.stderr.write(os.path.basename(sys.argv[0]) + ": error: ")
12 sys.stderr.write(msg)
48 def write(self,msg): member in class:StringOutput
50 logging.debug("write '%s'" % msg)
135 f.write(self.new_data[dst])
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
FileCopyHelper.java 80 target.write(buffer, 0, len);
  /cts/hostsidetests/api/src/com/android/cts/api/
FilePuller.java 65 outputStream.write(data, offset, len);
  /cts/tests/tests/webkit/src/android/webkit/cts/
TracingControllerTest.java 52 public void write(byte[] chunk) { method in class:TracingControllerTest.TracingReceiver
56 outputStream.write(chunk);
74 public void write(int b) { method in class:TracingControllerTest.TracingReceiver
75 fail("write(int) should not be called");
79 public void write(byte[] b, int off, int len) { method in class:TracingControllerTest.TracingReceiver
80 fail("write(byte[], int, int) should not be called");
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form10t.java 90 write(out, opcodeUnit(insn, (offset & 0xff))); method

Completed in 651 milliseconds

<<11121314151617181920>>