Searched refs:DB_TABLE (Results 1 – 2 of 2) sorted by relevance
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
H A D | BluetoothOppProvider.java | 70 private static final String DB_TABLE = "btopp"; field in BluetoothOppProvider 142 db.execSQL("CREATE TABLE " + DB_TABLE + "(" + BluetoothShare._ID in createTable() 160 db.execSQL("DROP TABLE IF EXISTS " + DB_TABLE); in dropTable() 247 long rowID = db.insert(DB_TABLE, null, filteredValues); in insert() 276 qb.setTables(DB_TABLE); in query() 279 qb.setTables(DB_TABLE); in query() 368 count = db.update(DB_TABLE, values, myWhere, selectionArgs); in update() 404 count = db.delete(DB_TABLE, myWhere, selectionArgs); in delete()
|
/aosp12/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
H A D | DownloadProvider.java | 99 private static final String DB_TABLE = "downloads"; field in DownloadProvider 436 db.update(DB_TABLE, values, cacheSelection, null); in makeCacheDownloadsInvisible() 448 try (Cursor cursor = db.query(DB_TABLE, in updateMediaStoreUrisFromFilesToDownloads() 470 try (Cursor cursor = db.query(DB_TABLE, in canonicalizeDataPaths() 508 db.update(DB_TABLE, values, whereClause, null); in nullifyMediaStoreUris() 528 db.execSQL("DROP TABLE IF EXISTS " + DB_TABLE); in createDownloadsTable() 529 db.execSQL("CREATE TABLE " + DB_TABLE + "(" + in createDownloadsTable() 595 try (Cursor cursor = db.query(DB_TABLE, in onCreate() 1546 table = DB_TABLE; in getQueryBuilder() 1562 table = DB_TABLE; in getQueryBuilder() [all …]
|