Lines Matching defs:files

37  * or it can write to a rotating set of files.
39 * For a rotating set of files, as each file reaches a given size
41 * Successively older files are named by adding "0", "1", "2",
71 * specifies how many output files to cycle through (defaults to 1).
77 * any existing files (defaults to false).
96 * would typically cause log files to be written on Solaris to
128 private File files[];
217 * @exception IOException if there are IO problems opening the files.
240 * @exception IOException if there are IO problems opening the files.
272 * @exception IOException if there are IO problems opening the files.
291 * Initialize a <tt>FileHandler</tt> to write to a set of files. When
294 * of count files.
306 * @param count the number of files to use
307 * @exception IOException if there are IO problems opening the files.
327 * Initialize a <tt>FileHandler</tt> to write to a set of files
330 * output will cycle through a set of count files.
343 * @param count the number of files to use
345 * @exception IOException if there are IO problems opening the files.
366 // Private method to open the set of output files, based on the
384 // to our set of output files, as long as we are alive.
434 files = new File[count];
436 files[i] = generate(pattern, i, unique);
441 open(files[0], true);
498 // we disallow attempts to open files relative to %h.
538 // Rotate the set of output files
545 File f1 = files[i];
546 File f2 = files[i+1];
555 open(files[0], false);
580 // it is OK to write the target files, even if we are
593 * Close all the files.