Home
last modified time | relevance | path

Searched defs:write (Results 1 – 25 of 75) sorted by relevance

123

/libcore/luni/src/main/java/java/io/
DObjectOutput.java54 public void write(byte[] buffer) throws IOException; in write() method
71 public void write(byte[] buffer, int offset, int count) throws IOException; in write() method
83 public void write(int value) throws IOException; in write() method
DOutputStream.java81 public void write(byte[] buffer) throws IOException { in write() method in OutputStream
103 public void write(byte[] buffer, int offset, int count) throws IOException { in write() method in OutputStream
119 public abstract void write(int oneByte) throws IOException; in write() method in OutputStream
DWriter.java93 public void write(char[] buf) throws IOException { in write() method in Writer
113 public abstract void write(char[] buf, int offset, int count) throws IOException; in write() method in Writer
124 public void write(int oneChar) throws IOException { in write() method in Writer
140 public void write(String str) throws IOException { in write() method in Writer
160 public void write(String str, int offset, int count) throws IOException { in write() method in Writer
DFilterWriter.java90 public void write(char[] buffer, int offset, int count) throws IOException { in write() method in FilterWriter
106 public void write(int oneChar) throws IOException { in write() method in FilterWriter
127 public void write(String str, int offset, int count) throws IOException { in write() method in FilterWriter
DStringWriter.java118 public void write(char[] chars, int offset, int count) { in write() method in StringWriter
134 public void write(int oneChar) { in write() method in StringWriter
146 public void write(String str) { in write() method in StringWriter
165 public void write(String str, int offset, int count) { in write() method in StringWriter
DFilterOutputStream.java109 public void write(byte[] buffer, int offset, int length) throws IOException { in write() method in FilterOutputStream
128 public void write(int oneByte) throws IOException { in write() method in FilterOutputStream
DBufferedWriter.java184 public void write(char[] buffer, int offset, int count) throws IOException { in write() method in BufferedWriter
232 public void write(int oneChar) throws IOException { in write() method in BufferedWriter
264 public void write(String str, int offset, int count) throws IOException { in write() method in BufferedWriter
DDataOutput.java41 public abstract void write(byte[] buffer) throws IOException; in write() method
56 public abstract void write(byte[] buffer, int offset, int count) throws IOException; in write() method
67 public abstract void write(int oneByte) throws IOException; in write() method
DBufferedOutputStream.java121 public synchronized void write(byte[] buffer, int offset, int length) throws IOException { in write() method in BufferedOutputStream
171 public synchronized void write(int oneByte) throws IOException { in write() method in BufferedOutputStream
DPipedOutputStream.java146 public void write(byte[] buffer, int offset, int count) throws IOException { in write() method in PipedOutputStream
171 public void write(int oneByte) throws IOException { in write() method in PipedOutputStream
DPipedWriter.java154 public void write(char[] buffer, int offset, int count) throws IOException { in write() method in PipedWriter
183 public void write(int c) throws IOException { in write() method in PipedWriter
DCharArrayWriter.java166 public void write(char[] buffer, int offset, int len) { in write() method in CharArrayWriter
184 public void write(int oneChar) { in write() method in CharArrayWriter
203 public void write(String str, int offset, int count) { in write() method in CharArrayWriter
/libcore/support/src/test/java/tests/support/
DSupport_StringWriter.java113 public void write(char[] buf, int offset, int count) { in write() method in Support_StringWriter
135 public void write(int oneChar) { in write() method in Support_StringWriter
150 public void write(String str) { in write() method in Support_StringWriter
172 public void write(String str, int offset, int count) { in write() method in Support_StringWriter
DSupport_OutputStream.java58 public void write(byte buffer[]) throws IOException { in write() method in Support_OutputStream
68 public void write(byte buffer[], int offset, int count) throws IOException { in write() method in Support_OutputStream
81 public void write(int oneByte) throws IOException { in write() method in Support_OutputStream
/libcore/luni/src/main/java/java/nio/channels/
DGatheringByteChannel.java56 public long write(ByteBuffer[] buffers) throws IOException; in write() method
93 public long write(ByteBuffer[] buffers, int offset, int length) in write() method
DSocketChannel.java357 public abstract int write(ByteBuffer source) throws IOException; in write() method in SocketChannel
396 public abstract long write(ByteBuffer[] sources, int offset, int length) throws IOException; in write() method in SocketChannel
422 public synchronized final long write(ByteBuffer[] sources) throws IOException { in write() method in SocketChannel
DDatagramChannel.java350 public abstract int write(ByteBuffer source) throws IOException; in write() method in DatagramChannel
390 public abstract long write(ByteBuffer[] sources, int offset, int length) in write() method in DatagramChannel
422 public synchronized final long write(ByteBuffer[] sources) in write() method in DatagramChannel
DWritableByteChannel.java63 public int write(ByteBuffer buffer) throws IOException; in write() method
/libcore/crypto/src/main/java/org/conscrypt/
DSSLSocketOutputStream.java37 @Override public void write(int b) throws IOException { in write() method in SSLSocketOutputStream
42 public void write(byte[] b, int off, int len) throws IOException { in write() method in SSLSocketOutputStream
/libcore/luni/src/main/java/java/util/zip/
DCheckedOutputStream.java67 public void write(int val) throws IOException { in write() method in CheckedOutputStream
87 public void write(byte[] buf, int off, int nbytes) throws IOException { in write() method in CheckedOutputStream
DInflaterOutputStream.java126 public void write(int b) throws IOException, ZipException { in write() method in InflaterOutputStream
141 public void write(byte[] bytes, int offset, int byteCount) throws IOException, ZipException { in write() method in InflaterOutputStream
148 private void write() throws IOException, ZipException { in write() method in InflaterOutputStream
/libcore/luni/src/main/java/javax/crypto/
DCipherOutputStream.java74 @Override public void write(int b) throws IOException { in write() method in CipherOutputStream
91 @Override public void write(byte[] b, int off, int len) throws IOException { in write() method in CipherOutputStream
/libcore/luni/src/main/java/java/security/
DDigestOutputStream.java81 public void write(int b) throws IOException { in write() method in DigestOutputStream
104 public void write(byte[] b, int off, int len) throws IOException { in write() method in DigestOutputStream
/libcore/luni/src/test/java/libcore/java/io/
DOldFilterWriterTest.java48 public void write(char[] buffer, int offset, int count) throws IOException { in write() method in OldFilterWriterTest.MockWriter
52 public void write(int oneChar) throws IOException { in write() method in OldFilterWriterTest.MockWriter
56 public void write(String str, int offset, int count) throws IOException { in write() method in OldFilterWriterTest.MockWriter
/libcore/luni/src/test/java/libcore/java/util/logging/
DOldErrorManagerTest.java55 public void write(byte[] buffer) { in write() method in OldErrorManagerTest.MockStream
60 public synchronized void write(byte[] buffer, int offset, int len) { in write() method in OldErrorManagerTest.MockStream

123