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

/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
H A DDiskLruCache.java75 * <p>Clients call {@link #edit} to create or update the values of an entry. An
77 * edited then {@link #edit} will return null.
86 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
96 * an error occurs while writing a cache value, the edit will fail silently.
168 * a sequence number each time an edit is committed. A snapshot is stale if
511 * edit is in progress.
513 public Editor edit(String key) throws IOException { method in class:DiskLruCache
514 return edit(key, ANY_SEQUENCE_NUMBER);
517 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { method in class:DiskLruCache
529 return null; // another edit i
746 public Editor edit() throws IOException { method in class:DiskLruCache.Snapshot
[all...]

Completed in 1429 milliseconds