Home
last modified time | relevance | path

Searched refs:SupportSQLiteStatement (Results 1 – 23 of 23) sorted by relevance

/frameworks/support/room/runtime/src/test/java/androidx/room/
DSharedSQLiteStatementTest.java27 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 …]
DInvalidationTrackerTest.java41 import androidx.sqlite.db.SupportSQLiteStatement;
74 final SupportSQLiteStatement statement = mock(SupportSQLiteStatement.class); in setup()
/frameworks/support/room/runtime/src/main/java/androidx/room/
DEntityInsertionAdapter.java20 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 …]
DSharedSQLiteStatement.java19 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()
DEntityDeletionOrUpdateAdapter.java20 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()
DRoomDatabase.java40 import androidx.sqlite.db.SupportSQLiteStatement;
243 public SupportSQLiteStatement compileStatement(@NonNull String sql) { in compileStatement()
DInvalidationTracker.java33 import androidx.sqlite.db.SupportSQLiteStatement;
112 private volatile SupportSQLiteStatement mCleanupStatement;
/frameworks/support/room/compiler/src/test/data/daoWriter/output/
DDeletionDao.java7 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()
DUpdateDao.java6 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()
DWriterDao.java21 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/
DFrameworkSQLiteStatement.java21 import androidx.sqlite.db.SupportSQLiteStatement;
26 class FrameworkSQLiteStatement extends FrameworkSQLiteProgram implements SupportSQLiteStatement {
DFrameworkSQLiteDatabase.java36 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/
DSupportSQLiteStatement.java23 public interface SupportSQLiteStatement extends SupportSQLiteProgram { interface
DSupportSQLiteDatabase.java47 SupportSQLiteStatement compileStatement(String sql); in compileStatement()
/frameworks/support/persistence/db/api/
Dcurrent.txt17 …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/
D1.0.0.txt16 …method public abstract android.arch.persistence.db.SupportSQLiteStatement compileStatement(java.la…
114 …public abstract interface SupportSQLiteStatement implements android.arch.persistence.db.SupportSQL…
D1.1.0.txt17 …method public abstract android.arch.persistence.db.SupportSQLiteStatement compileStatement(java.la…
116 …public abstract interface SupportSQLiteStatement implements android.arch.persistence.db.SupportSQL…
Dcurrent.txt17 …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/
D1.0.0.txt36 …method public android.arch.persistence.db.SupportSQLiteStatement compileStatement(java.lang.String…
D1.1.0.txt39 …method public android.arch.persistence.db.SupportSQLiteStatement compileStatement(java.lang.String…
Dcurrent.txt39 …method public android.arch.persistence.db.SupportSQLiteStatement compileStatement(java.lang.String…
/frameworks/support/room/runtime/api/
Dcurrent.txt39 method public androidx.sqlite.db.SupportSQLiteStatement compileStatement(java.lang.String);
/frameworks/support/jetifier/jetifier/core/src/main/resources/
Ddefault.generated.config2277 … "android/arch/persistence/db/SupportSQLiteStatement": "androidx/sqlite/db/SupportSQLiteStatement",