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()2075 int endoff = s.length(); in writeBytes() local2078 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() local2098 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() local2121 while (off < endoff) { in writeBooleans()[all …]
918 int endoff = off + len; in read() local919 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in read()1085 int endoff = off + len; in readFully() local1086 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in readFully()3034 int stop, endoff = off + len; in readBooleans() local3035 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() local3056 while (off < endoff) { in readChars()[all …]