HomeSort by relevance Sort by last modified time
    Searched refs:SupportSQLiteStatement (Results 1 - 14 of 14) sorted by null

  /frameworks/support/room/runtime/src/main/java/androidx/room/
SharedSQLiteStatement.java 19 import androidx.sqlite.db.SupportSQLiteStatement;
40 private volatile SupportSQLiteStatement mStmt;
63 private SupportSQLiteStatement createNewStatement() {
68 private SupportSQLiteStatement getStmt(boolean canUseCached) {
69 final SupportSQLiteStatement stmt;
83 * Call this to get the statement. Must call {@link #release(SupportSQLiteStatement)} once done.
85 public SupportSQLiteStatement acquire() {
95 public void release(SupportSQLiteStatement statement) {
EntityDeletionOrUpdateAdapter.java 20 import androidx.sqlite.db.SupportSQLiteStatement;
58 protected abstract void bind(SupportSQLiteStatement statement, T entity);
67 final SupportSQLiteStatement stmt = acquire();
83 final SupportSQLiteStatement stmt = acquire();
103 final SupportSQLiteStatement stmt = acquire();
EntityInsertionAdapter.java 20 import androidx.sqlite.db.SupportSQLiteStatement;
53 protected abstract void bind(SupportSQLiteStatement statement, T entity);
61 final SupportSQLiteStatement stmt = acquire();
76 final SupportSQLiteStatement stmt = acquire();
93 final SupportSQLiteStatement stmt = acquire();
111 final SupportSQLiteStatement stmt = acquire();
127 final SupportSQLiteStatement stmt = acquire();
149 final SupportSQLiteStatement stmt = acquire();
171 final SupportSQLiteStatement stmt = acquire();
193 final SupportSQLiteStatement stmt = acquire()
    [all...]
InvalidationTracker.java 33 import androidx.sqlite.db.SupportSQLiteStatement;
112 private volatile SupportSQLiteStatement mCleanupStatement;
RoomDatabase.java 40 import androidx.sqlite.db.SupportSQLiteStatement;
243 public SupportSQLiteStatement compileStatement(@NonNull String sql) {
  /frameworks/support/persistence/db/src/main/java/androidx/sqlite/db/
SupportSQLiteStatement.java 23 public interface SupportSQLiteStatement extends SupportSQLiteProgram {
SupportSQLiteDatabase.java 47 SupportSQLiteStatement compileStatement(String sql);
  /frameworks/support/room/runtime/src/test/java/androidx/room/
SharedSQLiteStatementTest.java 27 import androidx.sqlite.db.SupportSQLiteStatement;
47 when(mDb.compileStatement(anyString())).thenAnswer(new Answer<SupportSQLiteStatement>() {
50 public SupportSQLiteStatement answer(InvocationOnMock invocation) throws Throwable {
51 return mock(SupportSQLiteStatement.class);
76 SupportSQLiteStatement stmt1 = mSharedStmt.acquire();
77 SupportSQLiteStatement stmt2 = mSharedStmt.acquire();
85 SupportSQLiteStatement stmt1 = mSharedStmt.acquire();
87 SupportSQLiteStatement stmt2 = mSharedStmt.acquire();
94 SupportSQLiteStatement stmt1 = mSharedStmt.acquire();
95 FutureTask<SupportSQLiteStatement> task = new FutureTask<>
    [all...]
InvalidationTrackerTest.java 41 import androidx.sqlite.db.SupportSQLiteStatement;
74 final SupportSQLiteStatement statement = mock(SupportSQLiteStatement.class);
  /frameworks/support/persistence/db-framework/src/main/java/androidx/sqlite/db/framework/
FrameworkSQLiteStatement.java 21 import androidx.sqlite.db.SupportSQLiteStatement;
26 class FrameworkSQLiteStatement extends FrameworkSQLiteProgram implements SupportSQLiteStatement {
FrameworkSQLiteDatabase.java 36 import androidx.sqlite.db.SupportSQLiteStatement;
63 public SupportSQLiteStatement compileStatement(String sql) {
196 SupportSQLiteStatement statement = compileStatement(query);
235 SupportSQLiteStatement stmt = compileStatement(sql.toString());
  /frameworks/support/room/compiler/src/test/data/daoWriter/output/
WriterDao.java 21 import androidx.sqlite.db.SupportSQLiteStatement;
50 public void bind(SupportSQLiteStatement stmt, User value) {
73 public void bind(SupportSQLiteStatement stmt, User value) {
95 public void bind(SupportSQLiteStatement stmt, Book value) {
DeletionDao.java 7 import androidx.sqlite.db.SupportSQLiteStatement;
39 public void bind(SupportSQLiteStatement stmt, User value) {
50 public void bind(SupportSQLiteStatement stmt, MultiPKeyEntity value) {
70 public void bind(SupportSQLiteStatement stmt, Book value) {
191 final SupportSQLiteStatement _stmt = __preparedStmtOfDeleteByUid.acquire();
207 final SupportSQLiteStatement _stmt = __preparedStmtOfDeleteEverything.acquire();
227 SupportSQLiteStatement _stmt = __db.compileStatement(_sql);
UpdateDao.java 6 import androidx.sqlite.db.SupportSQLiteStatement;
37 public void bind(SupportSQLiteStatement stmt, User value) {
60 public void bind(SupportSQLiteStatement stmt, MultiPKeyEntity value) {
90 public void bind(SupportSQLiteStatement stmt, Book value) {
224 final SupportSQLiteStatement _stmt = __preparedStmtOfAgeUserByUid.acquire();
243 final SupportSQLiteStatement _stmt = __preparedStmtOfAgeUserAll.acquire();

Completed in 123 milliseconds