/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/ |
TeeOutputStream.java | 18 public void write(byte[] buf) method in class:TeeOutputStream 21 this.output1.write(buf); 22 this.output2.write(buf); 25 public void write(byte[] buf, int off, int len) method in class:TeeOutputStream 28 this.output1.write(buf, off, len); 29 this.output2.write(buf, off, len); 32 public void write(int b) method in class:TeeOutputStream 35 this.output1.write(b); 36 this.output2.write(b);
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/ |
FaultRecoveringOutputStream.java | 54 @Override public final void write(byte[] buffer, int offset, int count) throws IOException { method in class:FaultRecoveringOutputStream 60 out.write(buffer, offset, count); 68 replayBuffer.write(buffer, offset, count);
|
AbstractOutputStream.java | 25 * <p>Since a single socket's output stream may be used to write multiple HTTP 31 @Override public final void write(int data) throws IOException { method in class:AbstractOutputStream 32 write(new byte[] { (byte) data }); method
|
/libcore/luni/src/main/java/java/util/zip/ |
GZIPOutputStream.java | 24 * The {@code GZIPOutputStream} class is used to write data to a stream in the 36 * zos.write(bytes); 50 * Constructs a new {@code GZIPOutputStream} to write data in GZIP format to 58 * Constructs a new {@code GZIPOutputStream} to write data in GZIP format to 67 * Constructs a new {@code GZIPOutputStream} to write data in GZIP format to 76 * Constructs a new {@code GZIPOutputStream} to write data in GZIP format to 84 out.write(Deflater.DEFLATED); 85 out.write(0); // flags 87 out.write(0); // extra flags 88 out.write(0); // operating syste 110 public void write(byte[] buffer, int off, int nbytes) throws IOException { method in class:GZIPOutputStream [all...] |
/libcore/luni/src/test/java/libcore/java/io/ |
FileOutputStreamTest.java | 36 fos2.write(1); 41 fos2.write(new byte[1], 0, 1); 46 fos1.write(1); 51 fos1.write(1); 56 fos1.write(new byte[1], 0, 1); 71 // ...but any explicit write is an error. 74 fos.write(bytes); 79 fos.write(bytes, 0, 2); 84 fos.write(42); 89 // ...except a 0-byte write [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
TeeOutputStream.java | 31 /** the second OutputStream to write to */
45 * Write the bytes to both streams.
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);
55 * Write the specified bytes to both streams.
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 71 public synchronized void write(int b) throws IOException { method in class:TeeOutputStream [all...] |
/build/tools/ |
post_process_props.py | 61 def write(self, f): member in class:PropFile 62 f.write("\n".join(self.lines)) 63 f.write("\n") 77 sys.stderr.write("bad command line: " + str(argv) + "\n") 81 properties.write(f)
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
CodeOutput.java | 26 public void write(short codeUnit); method in interface:CodeOutput 31 public void write(short u0, short u1); method in interface:CodeOutput 36 public void write(short u0, short u1, short u2); method in interface:CodeOutput 41 public void write(short u0, short u1, short u2, short u3); method in interface:CodeOutput 46 public void write(short u0, short u1, short u2, short u3, short u4); method in interface:CodeOutput 61 public void write(byte[] data); method in interface:CodeOutput 66 public void write(short[] data); method in interface:CodeOutput 71 public void write(int[] data); method in interface:CodeOutput 76 public void write(long[] data); method in interface:CodeOutput
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
IOExtensions.cs | 59 writer.Write( value ); 75 public static void write<T>( this TextWriter writer, T value ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions 77 writer.Write( value );
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
IOExtensions.cs | 57 writer.Write( value ); 73 public static void write<T>( this TextWriter writer, T value ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions 75 writer.Write( value );
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Streams.java | 40 out.write(buffer, 0, count); 53 out.write(buffer, 0, count);
|
/external/apache-http/src/org/apache/http/io/ |
SessionOutputBuffer.java | 49 void write(byte[] b, int off, int len) throws IOException; method in interface:SessionOutputBuffer 51 void write(byte[] b) throws IOException; method in interface:SessionOutputBuffer 53 void write(int b) throws IOException; method in interface:SessionOutputBuffer
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
WriterChain.java | 33 * write(int val) 34 * write(char[] chars) 35 * write(char[] chars, int start, int count) 36 * write(String chars) 37 * write(String chars, int start, int count) 54 public void write(int val) throws IOException; method in interface:WriterChain 56 public void write(char[] chars) throws IOException; method in interface:WriterChain 58 public void write(char[] chars, int start, int count) throws IOException; method in interface:WriterChain 60 public void write(String chars) throws IOException; method in interface:WriterChain 62 public void write(String chars, int start, int count) throws IOException method in interface:WriterChain [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
CMSAbsentContent.java | 34 public void write(OutputStream zOut) method in class:CMSAbsentContent
|
CMSProcessableByteArray.java | 40 public void write(OutputStream zOut) method in class:CMSProcessableByteArray 43 zOut.write(bytes);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/io/ |
MacOutputStream.java | 19 public void write(int b) method in class:MacOutputStream 25 public void write( method in class:MacOutputStream
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
ReverbInputBuffer.cpp | 43 void ReverbInputBuffer::write(const float* sourceP, size_t numberOfFrames) function in class:WebCore::ReverbInputBuffer
|
/external/chromium_org/third_party/jinja2/ |
meta.py | 25 def write(self, x): member in class:TrackingCodeGenerator 26 """Don't write."""
|
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
CodeOutput.java | 26 public void write(short codeUnit); method in interface:CodeOutput 31 public void write(short u0, short u1); method in interface:CodeOutput 36 public void write(short u0, short u1, short u2); method in interface:CodeOutput 41 public void write(short u0, short u1, short u2, short u3); method in interface:CodeOutput 46 public void write(short u0, short u1, short u2, short u3, short u4); method in interface:CodeOutput 61 public void write(byte[] data); method in interface:CodeOutput 66 public void write(short[] data); method in interface:CodeOutput 71 public void write(int[] data); method in interface:CodeOutput 76 public void write(long[] data); method in interface:CodeOutput
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
SFTPOutputStream.java | 19 * Offset (in bytes) in the file to write 30 * The general contract for <code>write(b, off, len)</code> is that 36 * @see SFTPv3Client#write(SFTPv3FileHandle,long,byte[],int,int) 39 public void write(byte[] buffer, int offset, int len) throws IOException method in class:SFTPOutputStream 41 // We can just blindly write the whole buffer at once. 42 // if <code>len</code> > 32768, then the write operation will 43 // be split into multiple writes in SFTPv3Client#write. 44 handle.getClient().write(handle, writeOffset, buffer, offset, len); 50 public void write(int b) throws IOException { method in class:SFTPOutputStream 53 handle.getClient().write(handle, writeOffset, buffer, 0, 1) [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/ |
Connector.java | 55 * or write will fail with an exception. 82 public void write( ByteBuffer data ); method in interface:Connector
|
/external/marisa-trie/lib/marisa/ |
writer.h | 23 void write(const T &obj) { function in class:marisa::Writer 28 void write(const T *objs, std::size_t num_objs) { function in class:marisa::Writer
|
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
writer.h | 23 void write(const T &obj) { function in class:marisa_alpha::Writer 28 void write(const T *objs, std::size_t num_objs) { function in class:marisa_alpha::Writer
|
/frameworks/av/media/libnbaio/ |
Pipe.cpp | 43 ssize_t Pipe::write(const void *buffer, size_t count) function in class:android::Pipe 49 // write() is not multi-thread safe w.r.t. itself, so no mutex or atomic op needed to read mRear
|
/frameworks/av/media/mtp/ |
MtpEventPacket.cpp | 43 int MtpEventPacket::write(int fd) { function in class:android::MtpEventPacket
|