Searched refs:endoff (Results 1 – 2 of 2) sorted by relevance
720 int endoff = off + len; in write() local721 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in write()2059 int endoff = s.length(); in writeBytes() local2062 for (int off = 0; off < endoff; ) { in writeBytes()2065 csize = Math.min(endoff - off, CHAR_BUF_SIZE); in writeBytes()2081 int endoff = s.length(); in writeChars() local2082 for (int off = 0; off < endoff; ) { in writeChars()2083 int csize = Math.min(endoff - off, CHAR_BUF_SIZE); in writeChars()2104 int endoff = off + len; in writeBooleans() local2105 while (off < endoff) { in writeBooleans()[all …]
865 int endoff = off + len; in read() local866 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in read()1032 int endoff = off + len; in readFully() local1033 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in readFully()2898 int stop, endoff = off + len; in readBooleans() local2899 while (off < endoff) { in readBooleans()2901 int span = Math.min(endoff - off, MAX_BLOCK_SIZE); in readBooleans()2909 stop = Math.min(endoff, off + end - pos); in readBooleans()2919 int stop, endoff = off + len; in readChars() local2920 while (off < endoff) { in readChars()[all …]