Searched refs:readlimit (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DFilterInputStream.java68 * Sets a mark position in this stream. The parameter {@code readlimit}
71 * position, provided that {@code readlimit} has not been surpassed.
75 * @param readlimit
82 public synchronized void mark(int readlimit) { argument
83 in.mark(readlimit);
147 * mark is no longer valid because more than {@code readlimit}
H A DFilterReader.java62 * Sets a mark position in this reader. The parameter {@code readlimit}
65 * position, provided that {@code readlimit} has not been surpassed.
69 * @param readlimit
78 public synchronized void mark(int readlimit) throws IOException { argument
80 in.mark(readlimit);
H A DLineNumberInputStream.java80 * Sets a mark position in this stream. The parameter {@code readlimit}
83 * position, provided that {@code readlimit} has not been surpassed.
89 * @param readlimit
96 public void mark(int readlimit) { argument
97 in.mark(readlimit);
196 * mark is no longer valid because more than {@code readlimit}
H A DLineNumberReader.java74 * Sets a mark position in this reader. The parameter {@code readlimit}
77 * position, provided that {@code readlimit} has not been surpassed. The
81 * @param readlimit
90 public void mark(int readlimit) throws IOException { argument
92 super.mark(readlimit);
214 * mark is no longer valid because more than {@code readlimit}
H A DInputStream.java117 * Sets a mark position in this InputStream. The parameter {@code readlimit}
125 * @param readlimit
131 public void mark(int readlimit) { argument
H A DByteArrayInputStream.java105 * {@code readlimit} is ignored. Sending {@code reset()} will reposition the
108 * @param readlimit
114 public synchronized void mark(int readlimit) { argument
H A DPushbackInputStream.java325 * @param readlimit
329 @Override public void mark(int readlimit) { argument
H A DBufferedInputStream.java141 /* Mark position not set or exceeded readlimit */
151 /* Increase buffer size to accommodate the readlimit */
174 * Sets a mark position in this stream. The parameter {@code readlimit}
177 * position if {@code readlimit} has not been surpassed. The underlying
178 * buffer may be increased in size to allow {@code readlimit} number of
181 * @param readlimit
187 public synchronized void mark(int readlimit) { argument
188 marklimit = readlimit;
340 * no longer valid because more than {@code readlimit} bytes
/libcore/luni/src/main/java/java/util/zip/
H A DInflaterInputStream.java266 * @param readlimit
270 public void mark(int readlimit) { argument
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
H A DX509CertFactoryImpl.java737 * marked state with readlimit no more than BUFF_SIZE.
776 public void mark(int readlimit) { argument

Completed in 431 milliseconds