Home | History | Annotate | Download | only in output

Lines Matching refs:written

25  * data have been written to it. The event can be used, for example, to throw
55 * The number of bytes written to the output stream.
57 private long written;
87 * @param b The byte to be written.
95 written++;
103 * @param b The array of bytes to be written.
111 written += b.length;
119 * @param b The byte array from which the data will be written.
129 written += len;
135 * written out.
180 * Returns the number of bytes that have been written to this output stream.
182 * @return The number of bytes written.
186 return written;
199 return (written > threshold);
211 * @param count The number of bytes about to be written to the underlying
218 if (!thresholdExceeded && (written + count > threshold))
232 this.written = 0;