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

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java103 private final PreparedStatementCache mPreparedStatementCache; field in class:SQLiteConnection
168 mPreparedStatementCache = new PreparedStatementCache(
232 mPreparedStatementCache.evictAll();
415 mPreparedStatementCache.resize(configuration.maxSqlCacheSize);
443 return mPreparedStatementCache.get(sql) != null;
870 PreparedStatement statement = mPreparedStatementCache.get(sql);
889 mPreparedStatementCache.put(sql, statement);
920 mPreparedStatementCache.remove(statement.mSql);
1076 mPreparedStatementCache.dump(printer);
1164 mPreparedStatementCache
[all...]

Completed in 44 milliseconds