Home
last modified time | relevance | path

Searched refs:compileStatement (Results 1 – 9 of 9) sorted by relevance

/aosp14/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseStatementTest.java82 SQLiteStatement statement = mDatabase.compileStatement("DELETE FROM test"); in testExecuteStatement()
96 mDatabase.compileStatement("SELECT num FROM test WHERE str = ?"); in testSimpleQuery()
98 mDatabase.compileStatement("SELECT str FROM test WHERE num = ?"); in testSimpleQuery()
131 SQLiteStatement statement = mDatabase.compileStatement("INSERT INTO test (num) VALUES (?)"); in testStatementLongBinding()
153 SQLiteStatement statement = mDatabase.compileStatement("INSERT INTO test (num) VALUES (?)"); in testStatementStringBinding()
175 SQLiteStatement statement = mDatabase.compileStatement("INSERT INTO test (num) VALUES (?)"); in testStatementClearBindings()
222 mDatabase.compileStatement("INSERT INTO test (num, str) VALUES (?, ?)"); in testStatementMultipleBindings()
285 mDatabase.compileStatement("INSERT INTO test (num, str) VALUES (?, ?)"); in testStatementMultiThreaded()
299 SQLiteStatement statement = mDatabase.compileStatement("INSERT INTO test (num) VALUES (?)"); in testStatementConstraint()
/aosp14/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DDatabaseHelper.java423 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade()
540 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade()
560 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade()
578 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade()
685 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade()
726 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade()
771 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade()
836 stmt = db.compileStatement("INSERT INTO system(name,value)" in onUpgrade()
1881 insertStmt = db.compileStatement("INSERT " in moveSettingsToNewTable()
1917 insertStmt = db.compileStatement("INSERT INTO " + destTable in movePrefixedSettingsToNewTable()
[all …]
/aosp14/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java197 try (SQLiteStatement st = db.compileStatement(sql)) { in executeInsert()
206 try (SQLiteStatement st = db.compileStatement(sql)) { in executeUpdateDelete()
1017 SQLiteStatement prog = db.compileStatement(query); in longForQuery()
1039 SQLiteStatement prog = db.compileStatement(query); in stringForQuery()
1064 SQLiteStatement prog = db.compileStatement(query); in blobFileDescriptorForQuery()
1275 mReplaceStatement = mDb.compileStatement(replaceSQL); in getStatement()
1281 mInsertStatement = mDb.compileStatement(mInsertSQL); in getStatement()
/aosp14/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java1389 public SQLiteStatement compileStatement(String sql) throws SQLException { in compileStatement() method in SQLiteDatabase
2695 prog = compileStatement("PRAGMA " + p.first + ".integrity_check(1);"); in isDatabaseIntegrityOk()
/aosp14/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountsDb.java1328 return db.compileStatement(sql); in compileSqlStatementForLogging()
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...
/aosp14/frameworks/base/boot/
H A Dboot-image-profile.txt5823 HSPLandroid/database/sqlite/SQLiteDatabase;->compileStatement(Ljava/lang/String;)Landroid/database/…
/aosp14/frameworks/base/config/
H A Dboot-image-profile.txt5826 HSPLandroid/database/sqlite/SQLiteDatabase;->compileStatement(Ljava/lang/String;)Landroid/database/…
/aosp14/frameworks/base/core/api/
H A Dcurrent.txt14243 …method public android.database.sqlite.SQLiteStatement compileStatement(String) throws android.data…