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

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java252 public static final int MAX_SQL_CACHE_SIZE = 100; field in class:SQLiteDatabase
1772 * @param cacheSize the size of the cache. can be (0 to {@link #MAX_SQL_CACHE_SIZE})
1773 * @throws IllegalStateException if input cacheSize > {@link #MAX_SQL_CACHE_SIZE}.
1776 if (cacheSize > MAX_SQL_CACHE_SIZE || cacheSize < 0) {
1778 "expected value between 0 and " + MAX_SQL_CACHE_SIZE);

Completed in 25 milliseconds