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

1 2 3 4 5 67 8 91011>>

  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ClosedOutputStream.java 24 * 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");
NullOutputStream.java 40 * @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
NullWriter.java 44 * @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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
af_vfs.h 16 License along with this library; if not, write to the
41 ssize_t (*write) (AFvirtualfile *vfile, const void *data, size_t nbytes); member in struct:_AFvirtualfile
  /prebuilts/go/darwin-x86/src/runtime/
stubs2.go 22 func write(fd uintptr, p unsafe.Pointer, n int32) int32 func
sys_nacl_amd64p32.s 58 CALL runtime·write(SB)
63 TEXT runtime·write(SB),NOSPLIT,$16-20
68 JEQ write
75 write: label
76 // Ordinary write.
84 // Write with playback header.
104 // Write actual data.
  /prebuilts/go/linux-x86/src/runtime/
stubs2.go 22 func write(fd uintptr, p unsafe.Pointer, n int32) int32 func
sys_nacl_amd64p32.s 58 CALL runtime·write(SB)
63 TEXT runtime·write(SB),NOSPLIT,$16-20
68 JEQ write
75 write: label
76 // Ordinary write.
84 // Write with playback header.
104 // Write actual data.
  /prebuilts/jdk/jdk8/darwin-x86/sample/try-with-resources/src/
ZipCat.java 75 System.out.write(buffer, 0, len);
  /prebuilts/jdk/jdk8/linux-x86/sample/try-with-resources/src/
ZipCat.java 75 System.out.write(buffer, 0, len);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
output.py 16 # along with this program; if not, write to the Free Software
44 def write(self, module, fd): member in class:ModuleWriter
52 fd.write("%s\n" % str(node))
  /system/core/libmemunreachable/
ProcessMappings.h 28 bool write; member in struct:android::Mapping
  /system/core/libstats/
statsd_writer.h 39 /* write log to transport, returns number of bytes propagated, or -errno */
40 int (*write)(struct timespec* ts, struct iovec* vec, size_t nr); member in struct:android_log_transport_write
  /system/media/audio_utils/
fifo_writer32.cpp 58 void audio_utils_fifo_writer32::write(const int32_t *buffer, uint32_t count) function in class:audio_utils_fifo_writer32
  /system/media/audio_utils/include/audio_utils/
echo_reference.h 25 /** Buffer descriptor used by read() and write() methods, including the time stamp and delay. */
52 int (*write)(struct echo_reference_itfe *echo_reference, struct echo_reference_buffer *buffer); member in struct:echo_reference_itfe
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FsFile.java 16 * along with this library; If not, write to the Free Software Foundation, Inc.,
65 * Writes to this file taking the data to write from the specified
74 * @throws IOException on write error
76 public void write(long offset, ByteBuffer src) method in interface:FsFile
  /external/apache-http/src/org/apache/http/impl/io/
IdentityOutputStream.java 87 public void write(byte[] b, int off, int len) throws IOException { method in class:IdentityOutputStream
89 throw new IOException("Attempted write to closed stream.");
91 this.out.write(b, off, len);
94 public void write(byte[] b) throws IOException { method in class:IdentityOutputStream
95 write(b, 0, b.length); method
98 public void write(int b) throws IOException { method in class:IdentityOutputStream
100 throw new IOException("Attempted write to closed stream.");
102 this.out.write(b);
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
CountingOutputStreamTest.java 41 public void write(int b) throws IOException { method in class:CountingOutputStreamTest.NullStream
46 public void write(byte[] b) throws IOException { method in class:CountingOutputStreamTest.NullStream
51 public void write(byte[] b, int off, int len) throws IOException { method in class:CountingOutputStreamTest.NullStream
69 stream.write(1);
71 stream.write(new byte[] {2, 3, 4});
73 stream.write(new byte[] {4, 5, 6, 7, 8}, 1, 3); // Write only {5, 6, 7}
86 stream.write(buffer);
93 stream.write(buffer);
  /external/brotli/java/org/brotli/wrapper/enc/
BrotliOutputStream.java 51 throw new IOException("write after close");
57 public void write(int b) throws IOException { method in class:BrotliOutputStream
59 throw new IOException("write after close");
68 public void write(byte[] b) throws IOException { method in class:BrotliOutputStream
69 this.write(b, 0, b.length);
73 public void write(byte[] b, int off, int len) throws IOException { method in class:BrotliOutputStream
75 throw new IOException("write after close");
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
AnnotationWriter.java 57 public Appendable write(Appendable appendable, Context context) throws IOException { method in class:AnnotationWriter
59 annotationName.write(appendable, context);
67 onlyEntry.getValue().write(appendable, context);
  /external/desugar/java/com/google/devtools/build/android/desugar/
DirectoryOutputFileProvider.java 43 public void write(String filename, byte[] content) throws IOException { method in class:DirectoryOutputFileProvider
46 Files.write(path, content);
  /external/guava/guava/src/com/google/common/hash/
HashingOutputStream.java 50 @Override public void write(int b) throws IOException { method in class:HashingOutputStream
52 out.write(b);
55 @Override public void write(byte[] bytes, int off, int len) throws IOException { method in class:HashingOutputStream
57 out.write(bytes, off, len);
  /external/guava/guava-tests/test/com/google/common/io/
TestOutputStream.java 54 public void write(byte[] b, int off, int len) throws IOException { method in class:TestOutputStream
57 super.write(b, off, len);
61 public void write(int b) throws IOException { method in class:TestOutputStream
64 super.write(b);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
FaultHidingSink.java 16 @Override public void write(Buffer source, long byteCount) throws IOException { method in class:FaultHidingSink
22 super.write(source, byteCount);
  /external/volley/src/main/java/com/android/volley/toolbox/
PoolingByteArrayOutputStream.java 83 public synchronized void write(byte[] buffer, int offset, int len) { method in class:PoolingByteArrayOutputStream
85 super.write(buffer, offset, len);
89 public synchronized void write(int oneByte) { method in class:PoolingByteArrayOutputStream
91 super.write(oneByte);

Completed in 533 milliseconds

1 2 3 4 5 67 8 91011>>