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.java717 int endoff = off + len; in write() local
718 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in write()
2046 int endoff = s.length(); in writeBytes() local
2049 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() local
2069 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() local
2092 while (off < endoff) { in writeBooleans()
[all …]
DObjectInputStream.java862 int endoff = off + len; in read() local
863 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in read()
1029 int endoff = off + len; in readFully() local
1030 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) { in readFully()
2886 int stop, endoff = off + len; in readBooleans() local
2887 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() local
2908 while (off < endoff) { in readChars()
[all …]