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

/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DCacheManager.java40 int maxEntries, int maxBytes, int version) {
51 cache = new BlobCache(path, maxEntries, maxBytes, false,
39 getCache(Context context, String filename, int maxEntries, int maxBytes, int version) argument
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DUtf8ByteLengthFilter.java43 Utf8ByteLengthFilter(int maxBytes) { argument
44 mMaxBytes = maxBytes;
/packages/apps/Mms/src/com/android/mms/util/
H A DCacheManager.java41 int maxEntries, int maxBytes, int version) {
54 cache = new BlobCache(path, maxEntries, maxBytes, false,
40 getCache(Context context, String filename, int maxEntries, int maxBytes, int version) argument
H A DBlobCache.java57 // public BlobCache(String path, int maxEntries, int maxBytes, boolean reset) throws IOException;
129 // them can grow to the size specified by maxBytes. The maxEntries parameter
132 public BlobCache(String path, int maxEntries, int maxBytes, boolean reset) argument
134 this(path, maxEntries, maxBytes, reset, 0);
137 public BlobCache(String path, int maxEntries, int maxBytes, boolean reset, argument
148 resetCache(maxEntries, maxBytes);
299 private void resetCache(int maxEntries, int maxBytes) throws IOException { argument
306 writeInt(buf, IH_MAX_BYTES, maxBytes);
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DBlobCache.java57 // public BlobCache(String path, int maxEntries, int maxBytes, boolean reset) throws IOException;
129 // them can grow to the size specified by maxBytes. The maxEntries parameter
132 public BlobCache(String path, int maxEntries, int maxBytes, boolean reset) argument
134 this(path, maxEntries, maxBytes, reset, 0);
137 public BlobCache(String path, int maxEntries, int maxBytes, boolean reset, argument
148 resetCache(maxEntries, maxBytes);
299 private void resetCache(int maxEntries, int maxBytes) throws IOException { argument
306 writeInt(buf, IH_MAX_BYTES, maxBytes);
/packages/apps/SoundRecorder/src/com/android/soundrecorder/
H A DSoundRecorder.java98 * @param maxBytes the limit
101 public void setFileSizeLimit(File file, long maxBytes) { argument
103 mMaxBytes = maxBytes;

Completed in 165 milliseconds