Home | History | Annotate | Download | only in logging

Lines Matching defs:written

127  * would typically cause log files to be written on Solaris to
129 * would be typically written to C:\TEMP\java0.log and C:\TEMP\java1.log
166 * (b) keeps track of how many bytes have been written
170 int written;
172 MeteredStream(OutputStream out, int written) {
174 this.written = written;
180 written++;
186 written += buff.length;
192 written += len;
275 * There is no limit on the amount of data that may be written,
306 * There is no limit on the amount of data that may be written,
332 * (approximately) the given limit has been written to one file,
369 * been written to one file, another file will be opened. The
687 if (limit > 0 && meter.written >= limit) {