Home | History | Annotate | Download | only in voicedialer

Lines Matching refs:ENABLED

56     private static final String ENABLED = "enabled";
64 * Determine if logging is enabled. If the
66 * @return true if logging is enabled, determined by the 'enabled' file.
70 File enabled = new File(dir, ENABLED);
71 return enabled.exists();
81 File enabled = new File(dir, ENABLED);
82 enabled.createNewFile();
96 File enabled = new File(dir, ENABLED);
97 enabled.delete();