Home | History | Annotate | Download | only in voicedialer

Lines Matching refs:File

5  * you may not use this file except in compliance with the License.
28 import java.io.File;
45 * and the rest deleted to limit space used in the file system.
66 * @return true if logging is enabled, determined by the 'enabled' file.
69 File dir = context.getDir(LOGDIR, 0);
70 File enabled = new File(dir, ENABLED);
80 File dir = context.getDir(LOGDIR, 0);
81 File enabled = new File(dir, ENABLED);
95 File dir = context.getDir(LOGDIR, 0);
96 File enabled = new File(dir, ENABLED);
112 File dir = context.getDir(LOGDIR, 0);
113 mDatedPath = dir.toString() + File.separator + "log_" +
121 // generate new text output log file
128 * Write a line into the text log file.
141 * Write a header for the NBest lines into the text log file.
148 * Write the list of contacts into the text log file.
163 * Write a list of Intents into the text log file.
182 * Close the text log file.
195 public boolean accept(File f) {
200 File[] files = (new File(mDatedPath)).getParentFile().listFiles(ff);
209 * InputStream wrapper which will log the contents to a WAV file.