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
1783 * @param cacheSize the size of the cache. can be (0 to {@link #MAX_SQL_CACHE_SIZE})
1784 * @throws IllegalStateException if input cacheSize > {@link #MAX_SQL_CACHE_SIZE}.
1787 if (cacheSize > MAX_SQL_CACHE_SIZE || cacheSize < 0) {
1789 "expected value between 0 and " + MAX_SQL_CACHE_SIZE);

Completed in 4900 milliseconds