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.java727 int endoff = off + len; in write() local
728 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in write()
2075 int endoff = s.length(); in writeBytes() local
2078 for (int off = 0; off < endoff; ) { in writeBytes()
2081 csize = Math.min(endoff - off, CHAR_BUF_SIZE); in writeBytes()
2097 int endoff = s.length(); in writeChars() local
2098 for (int off = 0; off < endoff; ) { in writeChars()
2099 int csize = Math.min(endoff - off, CHAR_BUF_SIZE); in writeChars()
2120 int endoff = off + len; in writeBooleans() local
2121 while (off < endoff) { in writeBooleans()
[all …]
DObjectInputStream.java918 int endoff = off + len; in read() local
919 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in read()
1085 int endoff = off + len; in readFully() local
1086 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in readFully()
3034 int stop, endoff = off + len; in readBooleans() local
3035 while (off < endoff) { in readBooleans()
3037 int span = Math.min(endoff - off, MAX_BLOCK_SIZE); in readBooleans()
3045 stop = Math.min(endoff, off + end - pos); in readBooleans()
3055 int stop, endoff = off + len; in readChars() local
3056 while (off < endoff) { in readChars()
[all …]