Home
last modified time | relevance | path

Searched refs:endoff (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
DObjectOutputStream.java720 int endoff = off + len; in write() local
721 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in write()
2059 int endoff = s.length(); in writeBytes() local
2062 for (int off = 0; off < endoff; ) { in writeBytes()
2065 csize = Math.min(endoff - off, CHAR_BUF_SIZE); in writeBytes()
2081 int endoff = s.length(); in writeChars() local
2082 for (int off = 0; off < endoff; ) { in writeChars()
2083 int csize = Math.min(endoff - off, CHAR_BUF_SIZE); in writeChars()
2104 int endoff = off + len; in writeBooleans() local
2105 while (off < endoff) { in writeBooleans()
[all …]
DObjectInputStream.java865 int endoff = off + len; in read() local
866 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in read()
1032 int endoff = off + len; in readFully() local
1033 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in readFully()
2898 int stop, endoff = off + len; in readBooleans() local
2899 while (off < endoff) { in readBooleans()
2901 int span = Math.min(endoff - off, MAX_BLOCK_SIZE); in readBooleans()
2909 stop = Math.min(endoff, off + end - pos); in readBooleans()
2919 int stop, endoff = off + len; in readChars() local
2920 while (off < endoff) { in readChars()
[all …]