Searched refs:endoff (Results 1 – 2 of 2) sorted by relevance
717 int endoff = off + len; in write() local718 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in write()2046 int endoff = s.length(); in writeBytes() local2049 for (int off = 0; off < endoff; ) { in writeBytes()2052 csize = Math.min(endoff - off, CHAR_BUF_SIZE); in writeBytes()2068 int endoff = s.length(); in writeChars() local2069 for (int off = 0; off < endoff; ) { in writeChars()2070 int csize = Math.min(endoff - off, CHAR_BUF_SIZE); in writeChars()2091 int endoff = off + len; in writeBooleans() local2092 while (off < endoff) { in writeBooleans()[all …]
862 int endoff = off + len; in read() local863 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in read()1029 int endoff = off + len; in readFully() local1030 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in readFully()2886 int stop, endoff = off + len; in readBooleans() local2887 while (off < endoff) { in readBooleans()2889 int span = Math.min(endoff - off, MAX_BLOCK_SIZE); in readBooleans()2897 stop = Math.min(endoff, off + end - pos); in readBooleans()2907 int stop, endoff = off + len; in readChars() local2908 while (off < endoff) { in readChars()[all …]