Lines Matching full:mark
34 private long mark = -1;
53 @Override public void mark(int readlimit) {
54 in.mark(readlimit);
55 mark = left;
56 // it's okay to mark even if mark isn't supported, as reset won't work
86 throw new IOException("Mark not supported");
88 if (mark == -1) {
89 throw new IOException("Mark not set");
93 left = mark;