/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/signals/ |
D | ProtectedSignalsDatabaseMigrationTest.java | 59 List<String> tables = listTables(db); in testMigration1To2() local 60 assertTrue(tables.contains(DBProtectedSignal.TABLE_NAME)); in testMigration1To2() 61 assertFalse(tables.contains(DBEncoderLogicMetadata.TABLE_NAME)); in testMigration1To2() 62 assertFalse(tables.contains(DBEncodedPayload.TABLE_NAME)); in testMigration1To2() 63 assertFalse(tables.contains(DBEncoderEndpoint.TABLE_NAME)); in testMigration1To2() 67 List<String> tables = listTables(db); in testMigration1To2() local 68 assertTrue(tables.contains(DBProtectedSignal.TABLE_NAME)); in testMigration1To2() 69 assertTrue(tables.contains(DBEncoderLogicMetadata.TABLE_NAME)); in testMigration1To2() 70 assertTrue(tables.contains(DBEncodedPayload.TABLE_NAME)); in testMigration1To2() 71 assertTrue(tables.contains(DBEncoderEndpoint.TABLE_NAME)); in testMigration1To2() [all …]
|
/packages/providers/TvProvider/src/com/android/providers/tv/util/ |
D | SqlParams.java | 26 public SqlParams(String tables, String selection, String... selectionArgs) { in SqlParams() argument 27 setTables(tables); in SqlParams() 43 public void setTables(String tables) { in setTables() argument 44 mTables = tables; in setTables()
|
/packages/apps/TV/common/src/com/android/tv/common/util/sql/ |
D | SqlParams.java | 29 public SqlParams(String tables, @Nullable String selection, @Nullable String... selectionArgs) { in SqlParams() argument 30 setTables(tables); in SqlParams() 46 public void setTables(String tables) { in setTables() argument 47 mTables = tables; in setTables()
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/ |
D | RoomSchemaMigrationGuardrailTest.java | 244 Map<String, String> tables = in validateSchemaBundleMatchesSchema() local 246 for (Map.Entry<String, String> table : tables.entrySet()) { in validateSchemaBundleMatchesSchema() 272 if (!tables.keySet().containsAll(entityBundleByName.keySet())) { in validateSchemaBundleMatchesSchema() 280 String.join(",", tables.keySet()), in validateSchemaBundleMatchesSchema() 303 ImmutableMap.Builder<String, String> tables = new ImmutableMap.Builder<>(); in getTablesWithCreateSql() local 307 tables.put(name, createSql); in getTablesWithCreateSql() 309 return tables.build(); in getTablesWithCreateSql()
|
D | DbTestUtil.java | 219 List<String> tables = new ArrayList<>(); in getTables() local 222 tables.add(cursor.getString(cursor.getColumnIndex("name"))); in getTables() 225 Collections.sort(tables); in getTables() 226 return tables; in getTables() 230 SQLiteDatabase expectedDb, SQLiteDatabase actualDb, List<String> tables) { in assertIndexesEqual() argument 231 for (String tableName : tables) { in assertIndexesEqual()
|
/packages/modules/AdServices/adservices/tests/unittest/ui/src/com/android/adservices/data/ |
D | DbTestUtil.java | 210 List<String> tables = new ArrayList<>(); in getTables() local 213 tables.add(cursor.getString(cursor.getColumnIndex("name"))); in getTables() 216 Collections.sort(tables); in getTables() 217 return tables; in getTables() 221 SQLiteDatabase expectedDb, SQLiteDatabase actualDb, List<String> tables) { in assertIndexesEqual() argument 222 for (String tableName : tables) { in assertIndexesEqual()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/sqlite/ |
D | DatabaseAnalyzer.java | 82 final List<String> tables = findTablesAndViews(db); in findTableViewsAllowingColumns() local 86 final List<String> ret = new ArrayList<>(tables); // Start with the table/view list. in findTableViewsAllowingColumns() 87 for (String name : tables) { in findTableViewsAllowingColumns()
|
/packages/modules/GeoTZ/s2storage/ |
D | README.md | 36 Packed tables 39 Packed tables are a way of arranging block data to store tables of key-ordered key / value pairs in 42 Packed tables may contain some (optional) shared information that applies to all records in the
|
/packages/providers/ContactsProvider/ |
D | README.md | 17 or to get all the tables 19 qc/qc '.tables'
|
/packages/modules/GeoTZ/tzs2storage/ |
D | README.md | 17 most of the blocks are "packed tables". See the README.md associated with the 34 Packed tables 37 Packed tables are a way of arranging block data to store tables of key-ordered key / value pairs in 40 Packed tables may contain some (optional) shared information that applies to all records in the 48 The TZ S2 data file is a type of block file that uses packed tables. It overlays additional rules,
|
/packages/modules/Bluetooth/system/doc/ |
D | power_management.md | 42 ### Power management tables 44 The tables that determine which power levels are acceptable for which profiles 108 state tables. If the spec specifies `BTA_DM_PM_NO_PREF`, then any 116 `bta_dm_ssr_spec` tables, looking for the smallest max latency to use. 122 both actions specified for the profile in the `bta_dm_pm_spec` tables. If
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/measurement/ |
D | MeasurementDbHelperTest.java | 236 private void emptyTables(SQLiteDatabase db, String[] tables) { in emptyTables() argument 237 Arrays.stream(tables) in emptyTables()
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/shared/ |
D | SharedDbHelper.java | 226 SQLiteDatabase oldDb, SQLiteDatabase db, String[] tables) { in migrateOldDataToNewDatabase() argument 229 Arrays.stream(tables).forEachOrdered((table) -> copyOrMigrateTable(oldDb, db, table)); in migrateOldDataToNewDatabase()
|
/packages/modules/Virtualization/docs/ |
D | hugepages.md | 7 in the stage-2 page tables, instead of 512 individual contiguous single page
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/shared/ |
D | SharedDbHelperTest.java | 241 private void emptyTables(SQLiteDatabase db, String[] tables) { in emptyTables() argument 242 Arrays.stream(tables).forEach((table) -> db.delete(table, null, null)); in emptyTables()
|
/packages/providers/MediaProvider/src/com/android/providers/media/util/ |
D | SQLiteQueryBuilder.java | 431 boolean distinct, String tables, String[] columns, String where, in buildQueryString() argument 450 query.append(tables); in buildQueryString()
|
/packages/modules/AdServices/adservices/linter/documentation/ |
D | RoomDatabaseMigrationDetector.md | 66 * The new version can only have new tables and/or new columns.
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | AbstractContactAggregator.java | 1625 String tables = Tables.RAW_CONTACTS in updatePhotoId() local 1635 final Cursor c = db.query(tables, PhotoIdQuery.COLUMNS, in updatePhotoId()
|
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/geojsontz_to_tzs2polygons/data/ |
D | LICENSE | 152 of the Database, and can also include the Database tables and table
|
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/canonicalizetzs2polygons/data/input_polygons/ |
D | LICENSE | 152 of the Database, and can also include the Database tables and table
|
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/tzs2polygons_tzs2cellunions/data/ |
D | LICENSE | 152 of the Database, and can also include the Database tables and table
|
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/tzs2cellunions_to_tzs2ranges/data/ |
D | LICENSE | 152 of the Database, and can also include the Database tables and table
|
/packages/modules/GeoTZ/tzbb_data/ |
D | DATA_LICENSE | 152 of the Database, and can also include the Database tables and table
|
D | LICENSE | 152 of the Database, and can also include the Database tables and table
|
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/mergetzs2ranges/data/ |
D | LICENSE | 152 of the Database, and can also include the Database tables and table
|