/aosp_15_r20/external/javasqlite/src/main/java/SQLite/ |
H A D | Database.java | 175 public void exec(String sql, SQLite.Callback cb) throws SQLite.Exception { in exec() 181 private native void _exec(String sql, SQLite.Callback cb) in _exec() 207 public void exec(String sql, SQLite.Callback cb, in exec() 214 private native void _exec(String sql, SQLite.Callback cb, String args[]) in _exec() 293 public TableResult get_table(String sql, int maxrows) in get_table() 332 public TableResult get_table(String sql) throws SQLite.Exception { in get_table() 346 public TableResult get_table(String sql, int maxrows, String args[]) in get_table() 386 public TableResult get_table(String sql, String args[]) in get_table() 400 public void get_table(String sql, String args[], TableResult tbl) in get_table() 437 public synchronized static boolean complete(String sql) { in complete() [all …]
|
/aosp_15_r20/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
H A D | JDBCConnection.java | 272 public String nativeSQL(String sql) throws SQLException { in nativeSQL() 276 public CallableStatement prepareCall(String sql) throws SQLException { in prepareCall() 280 public CallableStatement prepareCall(String sql, int x, int y) in prepareCall() 285 public PreparedStatement prepareStatement(String sql) throws SQLException { in prepareStatement() 290 public PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() 431 public PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() 441 public CallableStatement prepareCall(String sql, int x, int y, int z) in prepareCall() 446 public PreparedStatement prepareStatement(String sql, int autokeys) in prepareStatement() 454 public PreparedStatement prepareStatement(String sql, int colIndexes[]) in prepareStatement() 459 public PreparedStatement prepareStatement(String sql, String columns[]) in prepareStatement() [all …]
|
H A D | JDBCStatement.java | 85 ResultSet executeQuery(String sql, String args[], boolean updonly) in executeQuery() 154 public ResultSet executeQuery(String sql) throws SQLException { in executeQuery() 158 public boolean execute(String sql) throws SQLException { in execute() 176 public void addBatch(String sql) throws SQLException { in addBatch() 218 public int executeUpdate(String sql) throws SQLException { in executeUpdate() 263 public int executeUpdate(String sql, int autokeys) in executeUpdate() 271 public int executeUpdate(String sql, int colIndexes[]) in executeUpdate() 276 public int executeUpdate(String sql, String colIndexes[]) in executeUpdate() 281 public boolean execute(String sql, int autokeys) in execute() 289 public boolean execute(String sql, int colIndexes[]) in execute() [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/15/libcore/ojluni/src/main/java/java/sql/ |
D | Statement.java | 66 ResultSet executeQuery(String sql) throws SQLException; in executeQuery() 91 int executeUpdate(String sql) throws SQLException; in executeUpdate() 347 boolean execute(String sql) throws SQLException; in execute() 513 void addBatch( String sql ) throws SQLException; in addBatch() 747 int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException; in executeUpdate() 782 int executeUpdate(String sql, int columnIndexes[]) throws SQLException; in executeUpdate() 816 int executeUpdate(String sql, String columnNames[]) throws SQLException; in executeUpdate() 869 boolean execute(String sql, int autoGeneratedKeys) throws SQLException; in execute() 918 boolean execute(String sql, int columnIndexes[]) throws SQLException; in execute() 968 boolean execute(String sql, String columnNames[]) throws SQLException; in execute()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/sql/ |
D | Statement.java | 66 ResultSet executeQuery(String sql) throws SQLException; in executeQuery() 91 int executeUpdate(String sql) throws SQLException; in executeUpdate() 347 boolean execute(String sql) throws SQLException; in execute() 513 void addBatch( String sql ) throws SQLException; in addBatch() 747 int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException; in executeUpdate() 782 int executeUpdate(String sql, int columnIndexes[]) throws SQLException; in executeUpdate() 816 int executeUpdate(String sql, String columnNames[]) throws SQLException; in executeUpdate() 869 boolean execute(String sql, int autoGeneratedKeys) throws SQLException; in execute() 918 boolean execute(String sql, int columnIndexes[]) throws SQLException; in execute() 968 boolean execute(String sql, String columnNames[]) throws SQLException; in execute()
|
D | Connection.java | 139 PreparedStatement prepareStatement(String sql) in prepareStatement() 172 CallableStatement prepareCall(String sql) throws SQLException; in prepareCall() 186 String nativeSQL(String sql) throws SQLException; in nativeSQL() 568 PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() 602 CallableStatement prepareCall(String sql, int resultSetType, in prepareCall() 854 PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() 894 CallableStatement prepareCall(String sql, int resultSetType, in prepareCall() 941 PreparedStatement prepareStatement(String sql, int autoGeneratedKeys) in prepareStatement() 989 PreparedStatement prepareStatement(String sql, int columnIndexes[]) in prepareStatement() 1037 PreparedStatement prepareStatement(String sql, String columnNames[]) in prepareStatement()
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/sql/ |
H A D | Statement.java | 66 ResultSet executeQuery(String sql) throws SQLException; in executeQuery() 91 int executeUpdate(String sql) throws SQLException; in executeUpdate() 347 boolean execute(String sql) throws SQLException; in execute() 513 void addBatch( String sql ) throws SQLException; in addBatch() 747 int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException; in executeUpdate() 782 int executeUpdate(String sql, int columnIndexes[]) throws SQLException; in executeUpdate() 816 int executeUpdate(String sql, String columnNames[]) throws SQLException; in executeUpdate() 869 boolean execute(String sql, int autoGeneratedKeys) throws SQLException; in execute() 918 boolean execute(String sql, int columnIndexes[]) throws SQLException; in execute() 968 boolean execute(String sql, String columnNames[]) throws SQLException; in execute()
|
H A D | Connection.java | 139 PreparedStatement prepareStatement(String sql) in prepareStatement() 172 CallableStatement prepareCall(String sql) throws SQLException; in prepareCall() 186 String nativeSQL(String sql) throws SQLException; in nativeSQL() 568 PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() 602 CallableStatement prepareCall(String sql, int resultSetType, in prepareCall() 854 PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() 894 CallableStatement prepareCall(String sql, int resultSetType, in prepareCall() 941 PreparedStatement prepareStatement(String sql, int autoGeneratedKeys) in prepareStatement() 989 PreparedStatement prepareStatement(String sql, int columnIndexes[]) in prepareStatement() 1037 PreparedStatement prepareStatement(String sql, String columnNames[]) in prepareStatement()
|
/aosp_15_r20/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
H A D | TestHelper_Connection1.java | 103 public String nativeSQL(String sql) throws SQLException { in nativeSQL() 107 public CallableStatement prepareCall(String sql, int resultSetType, in prepareCall() 113 public CallableStatement prepareCall(String sql, int resultSetType, in prepareCall() 118 public CallableStatement prepareCall(String sql) throws SQLException { in prepareCall() 122 public PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() 128 public PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() 133 public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys) in prepareStatement() 138 public PreparedStatement prepareStatement(String sql, int[] columnIndexes) in prepareStatement() 143 public PreparedStatement prepareStatement(String sql, String[] columnNames) in prepareStatement() 148 public PreparedStatement prepareStatement(String sql) throws SQLException { in prepareStatement()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/14/libcore/ojluni/src/main/java/java/sql/ |
D | Connection.java | 139 PreparedStatement prepareStatement(String sql) in prepareStatement() 172 CallableStatement prepareCall(String sql) throws SQLException; in prepareCall() 186 String nativeSQL(String sql) throws SQLException; in nativeSQL() 568 PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() 602 CallableStatement prepareCall(String sql, int resultSetType, in prepareCall() 854 PreparedStatement prepareStatement(String sql, int resultSetType, in prepareStatement() 894 CallableStatement prepareCall(String sql, int resultSetType, in prepareCall() 941 PreparedStatement prepareStatement(String sql, int autoGeneratedKeys) in prepareStatement() 989 PreparedStatement prepareStatement(String sql, int columnIndexes[]) in prepareStatement() 1037 PreparedStatement prepareStatement(String sql, String columnNames[]) in prepareStatement()
|
/aosp_15_r20/frameworks/base/core/java/android/database/sqlite/ |
H A D | SQLiteSession.java | 613 public void prepare(String sql, int connectionFlags, CancellationSignal cancellationSignal, in prepare() 644 public void execute(String sql, Object[] bindArgs, int connectionFlags, in execute() 677 public long executeForLong(String sql, Object[] bindArgs, int connectionFlags, in executeForLong() 710 public String executeForString(String sql, Object[] bindArgs, int connectionFlags, in executeForString() 745 public ParcelFileDescriptor executeForBlobFileDescriptor(String sql, Object[] bindArgs, in executeForBlobFileDescriptor() 779 public int executeForChangedRowCount(String sql, Object[] bindArgs, int connectionFlags, in executeForChangedRowCount() 813 public long executeForLastInsertedRowId(String sql, Object[] bindArgs, int connectionFlags, in executeForLastInsertedRowId() 856 public int executeForCursorWindow(String sql, Object[] bindArgs, in executeForCursorWindow() 902 private boolean executeSpecial(String sql, Object[] bindArgs, int connectionFlags, in executeSpecial() 927 private void acquireConnection(String sql, int connectionFlags, in acquireConnection()
|
H A D | SQLiteConnection.java | 147 private static native long nativePrepareStatement(long connectionPtr, String sql); in nativePrepareStatement() 646 boolean isPreparedStatementInCache(String sql) { in isPreparedStatementInCache() 690 public void prepare(String sql, SQLiteStatementInfo outStatementInfo) { in prepare() 737 public void execute(String sql, Object[] bindArgs, in execute() 782 public long executeForLong(String sql, Object[] bindArgs, in executeForLong() 827 public String executeForString(String sql, Object[] bindArgs, in executeForString() 874 public ParcelFileDescriptor executeForBlobFileDescriptor(String sql, Object[] bindArgs, in executeForBlobFileDescriptor() 920 public int executeForChangedRowCount(String sql, Object[] bindArgs, in executeForChangedRowCount() 969 public long executeForLastInsertedRowId(String sql, Object[] bindArgs, in executeForLastInsertedRowId() 1023 public int executeForCursorWindow(String sql, Object[] bindArgs, in executeForCursorWindow() [all …]
|
H A D | SQLiteDatabase.java | 1338 public void execPerConnectionSQL(@NonNull String sql, @Nullable Object[] bindArgs) in execPerConnectionSQL() 1493 public SQLiteStatement compileStatement(String sql) throws SQLException { in compileStatement() 1680 String sql = SQLiteQueryBuilder.buildQueryString( in queryWithFactory() local 1782 public Cursor rawQuery(@NonNull String sql, @Nullable String[] selectionArgs) { in rawQuery() 1801 public Cursor rawQuery(@NonNull String sql, @Nullable String[] selectionArgs, in rawQuery() 1821 @Nullable CursorFactory cursorFactory, @NonNull String sql, in rawQueryWithFactory() 1844 @Nullable CursorFactory cursorFactory, @NonNull String sql, in rawQueryWithFactory() 1979 StringBuilder sql = new StringBuilder(); in insertWithOnConflict() local 2090 StringBuilder sql = new StringBuilder(120); in updateWithOnConflict() local 2153 public void execSQL(String sql) throws SQLException { in execSQL() [all …]
|
/aosp_15_r20/external/perfetto/src/trace_processor/sqlite/ |
H A D | sql_source.cc | 45 std::pair<uint32_t, uint32_t> GetLineAndColumnForOffset(const std::string& sql, in GetLineAndColumnForOffset() 68 std::pair<std::string, size_t> SqlContextAndCaretPos(const std::string& sql, in SqlContextAndCaretPos() 98 SqlSource::SqlSource(std::string sql, in SqlSource() 107 SqlSource SqlSource::FromExecuteQuery(std::string sql) { in FromExecuteQuery() 111 SqlSource SqlSource::FromMetric(std::string sql, const std::string& name) { in FromMetric() 115 SqlSource SqlSource::FromMetricFile(std::string sql, const std::string& name) { in FromMetricFile() 119 SqlSource SqlSource::FromModuleInclude(std::string sql, in FromModuleInclude() 124 SqlSource SqlSource::FromTraceProcessorImplementation(std::string sql) { in FromTraceProcessorImplementation() 164 std::string sql; in ApplyRewrites() local
|
/aosp_15_r20/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/ |
H A D | SQLiteCursorTest.java | 206 String sql = "UPDATE table_name set blob_value=? where id=1234"; in testGetBlob() local 223 String sql = "UPDATE table_name set clob_value=? where id=1234"; in testGetClob() local 276 String sql = "UPDATE table_name set blob_value=? where id=1234"; in testGetStringWhenBlob() local 288 String sql = "UPDATE table_name set blob_value=? where id=1234"; in testGetIntWhenBlob() local 432 String sql = "UPDATE table_name set blob_value=? where id=1234"; in testGetTypeWhenBlob() local 450 String sql = "UPDATE table_name set long_value=NULL, float_value=NULL, double_value=NULL"; in testGetNullNumberValues() local 479 String sql = "SELECT * FROM table_name;"; in createCursor() local
|
/aosp_15_r20/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/perfetto/ |
H A D | Utils.kt | 36 val sql = in queryLastEntryTimestamp() constant 57 val sql = "SELECT TO_MONOTONIC($elapsedTimestamp) as ts;" in queryToMonotonic() constant 67 val sql = "SELECT TO_REALTIME($elapsedTimestamp) as ts;" in queryToRealtime() constant
|
/aosp_15_r20/external/rust/android-crates-io/crates/rusqlite/src/ |
D | lib.rs | 499 let mut sql = sql; in execute_batch() localVariable 984 sql: &'sql str, field 990 pub fn new(conn: &'conn Connection, sql: &'sql str) -> Batch<'conn, 'sql> { in new() 1000 let sql = &self.sql[self.tail..]; in next() localVariable 1229 let sql = "BEGIN; in test_persistence() localVariable 1302 let sql = "BEGIN; in test_invalid_unicode_file_names() localVariable 1329 let sql = "SELECT 1"; in test_close_retry() localVariable 1372 let sql = "BEGIN; in test_execute_batch() localVariable 1502 let sql = "BEGIN; in test_query_map() localVariable 1521 let sql = "BEGIN; in test_query_row() localVariable [all …]
|
D | statement.rs | 753 let sql = if self.stmt.is_null() { in fmt() localVariable 930 let sql = "CREATE TABLE test (id INTEGER PRIMARY KEY NOT NULL, name TEXT NOT NULL, flag \ in test_stmt_execute_named() localVariable 948 let sql = r#" in test_query_named() localVariable 964 let sql = r#" in test_query_map_named() localVariable 984 let sql = r#" in test_query_and_then_by_name() localVariable 1018 let sql = "CREATE TABLE test (x TEXT, y TEXT)"; in test_unbound_parameters_are_null() localVariable 1063 let sql = "CREATE TABLE test (x TEXT, y TEXT)"; in test_unbound_parameters_are_reused() localVariable 1113 let sql = "BEGIN; in test_exists() localVariable 1164 let sql = "BEGIN; in test_query_row() localVariable 1179 let sql = "BEGIN; in test_query_by_column_name() localVariable [all …]
|
/aosp_15_r20/libcore/luni/src/test/java/tests/java/sql/ |
H A D | SelectFunctionalityTest.java | 131 String sql = "SELECT * FROM " + DatabaseCreator.TEST_TABLE2; in test_SelectSimple() local 174 String sql = "SELECT finteger, ftext, fcharacter, fdecimal, fnumeric," in test_SelectPrepared() local 236 String sql = "SELECT finteger," + " (SELECT ftext FROM " in test_SubSelect() local 265 String sql = "SELECT onum, " + DatabaseCreator.ORDERS_TABLE + ".cnum" in test_SelectThreeTables() local 303 String sql = "SELECT b.cnum, b.cname" + " FROM " in test_SelectUnionItself() local 331 String sql = "SELECT distinct s.snum as ssnum, c.snum as ccnum FROM " in test_SelectLeftOuterJoin() local 364 String sql = "SELECT distinct s.snum as ssnum, c.snum as ccnum FROM " in test_SelectRightOuterJoin() local
|
/aosp_15_r20/platform_testing/libraries/flicker/utils/test/src/android/tools/monitors/ |
H A D | PerfettoTraceMonitorTest.kt | 149 val sql = in <lambda>() constant 199 val sql = in <lambda>() constant 234 val sql = in <lambda>() constant 266 val sql = in <lambda>() constant
|
/aosp_15_r20/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/sqlite/ |
D | SqlCheckerTest.java | 28 private ArrayList<String> getTokens(String sql) { in getTokens() 36 private void checkTokens(String sql, String spaceSeparatedExpectedTokens) { in checkTokens() 44 private void assertInvalidSql(String sql, String message) { in assertInvalidSql() 167 private void checkEnsureNoInvalidTokens(boolean ok, String sql, String... tokens) { in checkEnsureNoInvalidTokens() 203 private void checkEnsureSingleTokenOnly(boolean ok, String sql, String... tokens) { in checkEnsureSingleTokenOnly()
|
/aosp_15_r20/packages/providers/ContactsProvider/src/com/android/providers/contacts/sqlite/ |
D | SqlChecker.java | 82 private static InvalidSqlException genException(String message, String sql) { in genException() 86 private void throwIfContainsToken(String token, String sql) { in throwIfContainsToken() 96 public void ensureNoInvalidTokens(@Nullable String sql) { in ensureNoInvalidTokens() 104 public void ensureSingleTokenOnly(@Nullable String sql) { in ensureSingleTokenOnly() 140 static void findTokens(@Nullable String sql, int options, Consumer<String> checker) { in findTokens()
|
/aosp_15_r20/cts/tests/tests/database/src/android/database/sqlite/cts/ |
H A D | SQLiteStatementTest.java | 225 String sql = "SELECT data FROM blob_test WHERE _id = " + 2; in testSimpleQueryForBlobFileDescriptorSuccessNull() local 245 String sql = "SELECT data FROM blob_test WHERE _id = " + i; in doTestSimpleQueryForBlobFileDescriptorSuccess() local 254 String sql = "SELECT data FROM blob_test WHERE _id = ?"; in testSimpleQueryForBlobFileDescriptorSuccessParam() local 264 String sql = "SELECT data FROM blob_test WHERE _id = 100"; in testGetBlobFailureNoParam() local 284 String sql = "SELECT data FROM blob_test WHERE _id = ?"; in testGetBlobFailureParam() local
|
/aosp_15_r20/external/opencensus-java/contrib/spring/src/test/java/io/opencensus/contrib/spring/aop/ |
H A D | Sample.java | 47 public void execute(String sql) throws SQLException {} in execute() 49 public void executeQuery(String sql) throws SQLException {} in executeQuery() 51 public void executeUpdate(String sql) throws SQLException {} in executeUpdate() 53 public void executeLargeUpdate(String sql) throws SQLException {} in executeLargeUpdate()
|
/aosp_15_r20/packages/providers/TvProvider/tests/src/com/android/providers/tv/util/ |
D | SqliteTokenFinderTest.java | 34 private List<Pair<Integer, String>> getTokens(String sql) { in getTokens() 45 private void checkTokens(String sql, Pair<Integer, String>... tokens) { in checkTokens() 51 private void checkTokensRegular(String sql, @Nullable String tokens) { in checkTokensRegular() 63 private void assertInvalidSql(String sql, String message) { in assertInvalidSql()
|