Searched refs:endoff (Results 1 – 2 of 2) sorted by relevance
727 int endoff = off + len; in write() local728 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in write()2091 int endoff = s.length(); in writeBytes() local2094 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() local2114 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() local2137 while (off < endoff) { in writeBooleans()[all …]
921 int endoff = off + len; in read() local922 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in read()1088 int endoff = off + len; in readFully() local1089 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in readFully()3256 int stop, endoff = off + len; in readBooleans() local3257 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() local3278 while (off < endoff) { in readChars()[all …]