D | CountingOutputStream.java | 39 public void write(byte[] b) throws IOException { in write() argument 40 mBase.write(b); in write() 41 mWrittenBytes += b.length; in write() 45 public void write(byte[] b, int off, int len) throws IOException { in write() argument 46 mBase.write(b, off, len); in write() 51 public void write(int b) throws IOException { in write() argument 52 mBase.write(b); in write()
|