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

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java101 private final PreparedStatementCache mPreparedStatementCache; field in class:SQLiteConnection
166 mPreparedStatementCache = new PreparedStatementCache(
237 mPreparedStatementCache.evictAll();
420 mPreparedStatementCache.resize(configuration.maxSqlCacheSize);
448 return mPreparedStatementCache.get(sql) != null;
875 PreparedStatement statement = mPreparedStatementCache.get(sql);
894 mPreparedStatementCache.put(sql, statement);
925 mPreparedStatementCache.remove(statement.mSql);
1081 mPreparedStatementCache.dump(printer);
1169 mPreparedStatementCache
[all...]

Completed in 24 milliseconds