Searched defs:edit (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DDiskLruCache.java64 * <p>Clients call {@link #edit} to create or update the values of an entry. An
66 * edited then {@link #edit} will return null.
75 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
85 * an error occurs while writing a cache value, the edit will fail silently.
154 * a sequence number each time an edit is committed. A snapshot is stale if
398 * edit is in progress.
400 public Editor edit(String key) throws IOException { method in class:DiskLruCache
401 return edit(key, ANY_SEQUENCE_NUMBER);
404 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { method in class:DiskLruCache
416 return null; // another edit i
637 public Editor edit() throws IOException { method in class:DiskLruCache.Snapshot
[all...]

Completed in 104 milliseconds