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

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteProgram.java27 * SQLiteProgram is NOT internally synchronized so code using a SQLiteProgram from multiple
28 * threads should perform its own synchronization when using the SQLiteProgram.
30 public abstract class SQLiteProgram extends SQLiteClosable { class in inherits:SQLiteClosable
32 private static final String TAG = "SQLiteProgram";
84 * It is protected (in multi-threaded environment) by {@link SQLiteProgram}.this
93 /* package */ SQLiteProgram(SQLiteDatabase db, String sql) { method in class:SQLiteProgram
97 /* package */ SQLiteProgram(SQLiteDatabase db, String sql, Object[] bindArgs, method in class:SQLiteProgram
155 // the SQLiteCompiledSql in cache is in use by some other SQLiteProgram object.

Completed in 45 milliseconds