Home
last modified time | relevance | path

Searched refs:maxBytes (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
DBlobCache.java133 public BlobCache(String path, int maxEntries, int maxBytes, boolean reset) in BlobCache() argument
135 this(path, maxEntries, maxBytes, reset, 0); in BlobCache()
138 public BlobCache(String path, int maxEntries, int maxBytes, boolean reset, in BlobCache() argument
149 resetCache(maxEntries, maxBytes); in BlobCache()
300 private void resetCache(int maxEntries, int maxBytes) throws IOException { in resetCache() argument
307 writeInt(buf, IH_MAX_BYTES, maxBytes); in resetCache()
/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
DUtf8ByteLengthFilter.java44 Utf8ByteLengthFilter(int maxBytes) { in Utf8ByteLengthFilter() argument
45 mMaxBytes = maxBytes; in Utf8ByteLengthFilter()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DUtf8ByteLengthFilter.java46 Utf8ByteLengthFilter(int maxBytes) { in Utf8ByteLengthFilter() argument
47 mMaxBytes = maxBytes; in Utf8ByteLengthFilter()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/bluetooth/
DUtf8ByteLengthFilter.java46 Utf8ByteLengthFilter(int maxBytes) { in Utf8ByteLengthFilter() argument
47 mMaxBytes = maxBytes; in Utf8ByteLengthFilter()
/packages/apps/Gallery2/src/com/android/gallery3d/util/
DCacheManager.java40 int maxEntries, int maxBytes, int version) { in getCache() argument
51 cache = new BlobCache(path, maxEntries, maxBytes, false, in getCache()