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()
2091 int endoff = s.length(); in writeBytes() local
2094 for (int off = 0; off < endoff; ) { in writeBytes()
2097 csize = Math.min(endoff - off, CHAR_BUF_SIZE); in writeBytes()
2113 int endoff = s.length(); in writeChars() local
2114 for (int off = 0; off < endoff; ) { in writeChars()
2115 int csize = Math.min(endoff - off, CHAR_BUF_SIZE); in writeChars()
2136 int endoff = off + len; in writeBooleans() local
2137 while (off < endoff) { in writeBooleans()
[all …]
DObjectInputStream.java921 int endoff = off + len; in read() local
922 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in read()
1088 int endoff = off + len; in readFully() local
1089 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in readFully()
3256 int stop, endoff = off + len; in readBooleans() local
3257 while (off < endoff) { in readBooleans()
3259 int span = Math.min(endoff - off, MAX_BLOCK_SIZE); in readBooleans()
3267 stop = Math.min(endoff, off + end - pos); in readBooleans()
3277 int stop, endoff = off + len; in readChars() local
3278 while (off < endoff) { in readChars()
[all …]