Searched refs:endOfInput (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/libcore/net/http/
H A DFixedLengthInputStream.java35 endOfInput(true);
53 endOfInput(true);
H A DUnknownLengthHttpInputStream.java44 endOfInput(false);
H A DAbstractHttpInputStream.java82 protected final void endOfInput(boolean reuseSocket) throws IOException { method in class:AbstractHttpInputStream
H A DChunkedInputStream.java92 endOfInput(true);
/libcore/luni/src/main/java/java/nio/charset/
H A DCharsetEncoder.java36 * <li>Invoke {@link #encode(CharBuffer, ByteBuffer, boolean) encode} with the {@code endOfInput}
47 * {@code endOfInput} set to true.</li>
374 * The <code>endOfInput</code> parameter indicates if the invoker can
391 * @param endOfInput
402 public final CoderResult encode(CharBuffer in, ByteBuffer out, boolean endOfInput) { argument
404 // thus endOfInput should not be false
405 if (status == READY && finished && !endOfInput) {
408 if ((status == FLUSH) || (!endOfInput && status == END)) {
422 status = endOfInput ? END : ONGOING;
423 if (endOfInput) {
[all...]
H A DCharsetDecoder.java36 * method until the additional input is not needed, the <code>endOfInput</code>
40 * method for the last time, and then the <code>endOfInput</code> parameter
278 * The <code>endOfInput</code> parameter indicates that the invoker cannot
294 * @param endOfInput
307 boolean endOfInput) {
311 if ((status == FLUSH) || (!endOfInput && status == END)) {
335 status = endOfInput ? END : ONGOING;
336 if (endOfInput && remaining > 0) {
306 decode(ByteBuffer in, CharBuffer out, boolean endOfInput) argument
/libcore/luni/src/main/java/java/io/
H A DInputStreamReader.java43 private boolean endOfInput = false; field in class:InputStreamReader
247 endOfInput = true;
272 if (result == CoderResult.UNDERFLOW && endOfInput) {

Completed in 674 milliseconds