Home | History | Annotate | Download | only in disklrucache

Lines Matching defs:valueCount

143   private final int valueCount;
176 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) {
182 this.valueCount = valueCount;
191 * @param valueCount the number of values per cache entry. Must be positive.
195 public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)
200 if (valueCount <= 0) {
201 throw new IllegalArgumentException("valueCount <= 0");
217 DiskLruCache cache = new DiskLruCache(directory, appVersion, valueCount, maxSize);
236 cache = new DiskLruCache(directory, appVersion, valueCount, maxSize);
252 || !Integer.toString(valueCount).equals(valueCountString)
329 for (int t = 0; t < valueCount; t++) {
334 for (int t = 0; t < valueCount; t++) {
361 writer.write(Integer.toString(valueCount));
509 for (int i = 0; i < valueCount; i++) {
521 for (int i = 0; i < valueCount; i++) {
587 for (int i = 0; i < valueCount; i++) {
712 this.written = (entry.readable) ? null : new boolean[valueCount];
824 this.lengths = new long[valueCount];
825 cleanFiles = new File[valueCount];
826 dirtyFiles = new File[valueCount];
831 for (int i = 0; i < valueCount; i++) {
850 if (strings.length != valueCount) {