/frameworks/support/room/runtime/src/test/java/androidx/room/ |
D | SharedSQLiteStatementTest.java | 27 import androidx.sqlite.db.SupportSQLiteStatement; 47 when(mDb.compileStatement(anyString())).thenAnswer(new Answer<SupportSQLiteStatement>() { in init() 50 public SupportSQLiteStatement answer(InvocationOnMock invocation) throws Throwable { in init() 51 return mock(SupportSQLiteStatement.class); in init() 76 SupportSQLiteStatement stmt1 = mSharedStmt.acquire(); in getTwiceWithoutReleasing() 77 SupportSQLiteStatement stmt2 = mSharedStmt.acquire(); in getTwiceWithoutReleasing() 85 SupportSQLiteStatement stmt1 = mSharedStmt.acquire(); in getTwiceWithReleasing() 87 SupportSQLiteStatement stmt2 = mSharedStmt.acquire(); in getTwiceWithReleasing() 94 SupportSQLiteStatement stmt1 = mSharedStmt.acquire(); in getFromAnotherThreadWhileHolding() 95 FutureTask<SupportSQLiteStatement> task = new FutureTask<>( in getFromAnotherThreadWhileHolding() [all …]
|
D | InvalidationTrackerTest.java | 41 import androidx.sqlite.db.SupportSQLiteStatement; 74 final SupportSQLiteStatement statement = mock(SupportSQLiteStatement.class); in setup()
|
/frameworks/support/room/runtime/src/main/java/androidx/room/ |
D | EntityInsertionAdapter.java | 20 import androidx.sqlite.db.SupportSQLiteStatement; 53 protected abstract void bind(SupportSQLiteStatement statement, T entity); in bind() 61 final SupportSQLiteStatement stmt = acquire(); in insert() 76 final SupportSQLiteStatement stmt = acquire(); in insert() 93 final SupportSQLiteStatement stmt = acquire(); in insert() 111 final SupportSQLiteStatement stmt = acquire(); in insertAndReturnId() 127 final SupportSQLiteStatement stmt = acquire(); in insertAndReturnIdsArray() 149 final SupportSQLiteStatement stmt = acquire(); in insertAndReturnIdsArray() 171 final SupportSQLiteStatement stmt = acquire(); in insertAndReturnIdsArrayBox() 193 final SupportSQLiteStatement stmt = acquire(); in insertAndReturnIdsArrayBox() [all …]
|
D | SharedSQLiteStatement.java | 19 import androidx.sqlite.db.SupportSQLiteStatement; 40 private volatile SupportSQLiteStatement mStmt; 63 private SupportSQLiteStatement createNewStatement() { in createNewStatement() 68 private SupportSQLiteStatement getStmt(boolean canUseCached) { in getStmt() 69 final SupportSQLiteStatement stmt; in getStmt() 85 public SupportSQLiteStatement acquire() { in acquire() 95 public void release(SupportSQLiteStatement statement) { in release()
|
D | EntityDeletionOrUpdateAdapter.java | 20 import androidx.sqlite.db.SupportSQLiteStatement; 58 protected abstract void bind(SupportSQLiteStatement statement, T entity); in bind() 67 final SupportSQLiteStatement stmt = acquire(); in handle() 83 final SupportSQLiteStatement stmt = acquire(); in handleMultiple() 103 final SupportSQLiteStatement stmt = acquire(); in handleMultiple()
|
D | RoomDatabase.java | 40 import androidx.sqlite.db.SupportSQLiteStatement; 243 public SupportSQLiteStatement compileStatement(@NonNull String sql) { in compileStatement()
|
D | InvalidationTracker.java | 33 import androidx.sqlite.db.SupportSQLiteStatement; 112 private volatile SupportSQLiteStatement mCleanupStatement;
|
/frameworks/support/room/compiler/src/test/data/daoWriter/output/ |
D | DeletionDao.java | 7 import androidx.sqlite.db.SupportSQLiteStatement; 39 public void bind(SupportSQLiteStatement stmt, User value) { in DeletionDao_Impl() 50 public void bind(SupportSQLiteStatement stmt, MultiPKeyEntity value) { in DeletionDao_Impl() 70 public void bind(SupportSQLiteStatement stmt, Book value) { in DeletionDao_Impl() 191 final SupportSQLiteStatement _stmt = __preparedStmtOfDeleteByUid.acquire(); in deleteByUid() 207 final SupportSQLiteStatement _stmt = __preparedStmtOfDeleteEverything.acquire(); in deleteEverything() 227 SupportSQLiteStatement _stmt = __db.compileStatement(_sql); in deleteByUidList()
|
D | UpdateDao.java | 6 import androidx.sqlite.db.SupportSQLiteStatement; 37 public void bind(SupportSQLiteStatement stmt, User value) { in UpdateDao_Impl() 60 public void bind(SupportSQLiteStatement stmt, MultiPKeyEntity value) { in UpdateDao_Impl() 90 public void bind(SupportSQLiteStatement stmt, Book value) { in UpdateDao_Impl() 224 final SupportSQLiteStatement _stmt = __preparedStmtOfAgeUserByUid.acquire(); in ageUserByUid() 243 final SupportSQLiteStatement _stmt = __preparedStmtOfAgeUserAll.acquire(); in ageUserAll()
|
D | WriterDao.java | 21 import androidx.sqlite.db.SupportSQLiteStatement; 50 public void bind(SupportSQLiteStatement stmt, User value) { in WriterDao_Impl() 73 public void bind(SupportSQLiteStatement stmt, User value) { in WriterDao_Impl() 95 public void bind(SupportSQLiteStatement stmt, Book value) { in WriterDao_Impl()
|
/frameworks/support/persistence/db-framework/src/main/java/androidx/sqlite/db/framework/ |
D | FrameworkSQLiteStatement.java | 21 import androidx.sqlite.db.SupportSQLiteStatement; 26 class FrameworkSQLiteStatement extends FrameworkSQLiteProgram implements SupportSQLiteStatement {
|
D | FrameworkSQLiteDatabase.java | 36 import androidx.sqlite.db.SupportSQLiteStatement; 63 public SupportSQLiteStatement compileStatement(String sql) { in compileStatement() 196 SupportSQLiteStatement statement = compileStatement(query); 235 SupportSQLiteStatement stmt = compileStatement(sql.toString());
|
/frameworks/support/persistence/db/src/main/java/androidx/sqlite/db/ |
D | SupportSQLiteStatement.java | 23 public interface SupportSQLiteStatement extends SupportSQLiteProgram { interface
|
D | SupportSQLiteDatabase.java | 47 SupportSQLiteStatement compileStatement(String sql); in compileStatement()
|
/frameworks/support/persistence/db/api/ |
D | current.txt | 17 …method public abstract androidx.sqlite.db.SupportSQLiteStatement compileStatement(java.lang.String… 116 …public abstract interface SupportSQLiteStatement implements androidx.sqlite.db.SupportSQLiteProgra…
|
/frameworks/support/persistence/db/api_legacy/ |
D | 1.0.0.txt | 16 …method public abstract android.arch.persistence.db.SupportSQLiteStatement compileStatement(java.la… 114 …public abstract interface SupportSQLiteStatement implements android.arch.persistence.db.SupportSQL…
|
D | 1.1.0.txt | 17 …method public abstract android.arch.persistence.db.SupportSQLiteStatement compileStatement(java.la… 116 …public abstract interface SupportSQLiteStatement implements android.arch.persistence.db.SupportSQL…
|
D | current.txt | 17 …method public abstract android.arch.persistence.db.SupportSQLiteStatement compileStatement(java.la… 116 …public abstract interface SupportSQLiteStatement implements android.arch.persistence.db.SupportSQL…
|
/frameworks/support/room/runtime/api_legacy/ |
D | 1.0.0.txt | 36 …method public android.arch.persistence.db.SupportSQLiteStatement compileStatement(java.lang.String…
|
D | 1.1.0.txt | 39 …method public android.arch.persistence.db.SupportSQLiteStatement compileStatement(java.lang.String…
|
D | current.txt | 39 …method public android.arch.persistence.db.SupportSQLiteStatement compileStatement(java.lang.String…
|
/frameworks/support/room/runtime/api/ |
D | current.txt | 39 method public androidx.sqlite.db.SupportSQLiteStatement compileStatement(java.lang.String);
|
/frameworks/support/jetifier/jetifier/core/src/main/resources/ |
D | default.generated.config | 2277 … "android/arch/persistence/db/SupportSQLiteStatement": "androidx/sqlite/db/SupportSQLiteStatement",
|