Home | History | Annotate | Download | only in util

Lines Matching defs:DIRTY

107     private static final String DIRTY = "DIRTY";
123 * DIRTY 335c4c6028171cfddfbaae1a9c313c52
126 * DIRTY 1ab96a171faeeee38496d8b330771a7a
138 * o DIRTY lines track that an entry is actively being created or updated.
139 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
140 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
390 } else if (parts[0].equals(DIRTY) && parts.length == 2) {
401 * cache. Dirty entries are assumed to be inconsistent and will be deleted.
444 writer.write(DIRTY + ' ' + entry.key + '\n');
536 journalWriter.write(DIRTY + ' ' + key + '\n');
582 File dirty = entry.getDirtyFile(i);
584 if (dirty.exists()) {
586 dirty.renameTo(clean);
593 deleteIfExists(dirty);