Searched defs:nbytes (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/main/java/java/util/zip/
H A DCheckedInputStream.java80 * @param nbytes
88 public int read(byte[] buf, int off, int nbytes) throws IOException { argument
89 int x = in.read(buf, off, nbytes);
H A DCheckedOutputStream.java81 * @param nbytes
87 public void write(byte[] buf, int off, int nbytes) throws IOException { argument
88 out.write(buf, off, nbytes);
89 check.update(buf, off, nbytes);
H A DChecksum.java45 * @param nbytes
48 public void update(byte[] buf, int off, int nbytes); argument
H A DGZIPOutputStream.java99 * Write up to nbytes of data from the given buffer, starting at offset off,
103 public void write(byte[] buffer, int off, int nbytes) throws IOException { argument
104 super.write(buffer, off, nbytes);
105 crc.update(buffer, off, nbytes);
H A DZipFile.java435 public int read(byte[] buffer, int off, int nbytes) throws IOException { argument
436 int i = super.read(buffer, off, nbytes);
/libcore/luni/src/main/java/libcore/net/url/
H A DFtpURLInputStream.java46 public int read(byte[] buf, int off, int nbytes) throws IOException { argument
47 return is.read(buf, off, nbytes);
/libcore/luni/src/test/java/libcore/java/io/
H A DOldPipedOutputStreamTest.java60 public String read(int nbytes) { argument
61 byte[] buf = new byte[nbytes];
63 reader.read(buf, 0, nbytes);
H A DOldPipedWriterTest.java58 public String read(int nbytes) { argument
59 buf = new char[nbytes];
61 pr.read(buf, 0, nbytes);
/libcore/luni/src/main/java/java/util/jar/
H A DJarFile.java101 public int read(byte[] buf, int off, int nbytes) throws IOException { argument
106 int r = super.read(buf, off, nbytes);
H A DJarVerifier.java105 public void write(byte[] buf, int off, int nbytes) { argument
106 digest.update(buf, off, nbytes);

Completed in 314 milliseconds