Home
last modified time | relevance | path

Searched refs:tables (Results 1 – 25 of 39) sorted by relevance

12

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/signals/
DProtectedSignalsDatabaseMigrationTest.java59 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/
DSqlParams.java26 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/
DSqlParams.java29 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/
DRoomSchemaMigrationGuardrailTest.java244 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()
DDbTestUtil.java219 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/
DDbTestUtil.java210 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/
DDatabaseAnalyzer.java82 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/
DREADME.md36 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/
DREADME.md17 or to get all the tables
19 qc/qc '.tables'
/packages/modules/GeoTZ/tzs2storage/
DREADME.md17 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/
Dpower_management.md42 ### 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/
DMeasurementDbHelperTest.java236 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/
DSharedDbHelper.java226 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/
Dhugepages.md7 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/
DSharedDbHelperTest.java241 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/
DSQLiteQueryBuilder.java431 boolean distinct, String tables, String[] columns, String where, in buildQueryString() argument
450 query.append(tables); in buildQueryString()
/packages/modules/AdServices/adservices/linter/documentation/
DRoomDatabaseMigrationDetector.md66 * The new version can only have new tables and/or new columns.
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java1625 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/
DLICENSE152 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/
DLICENSE152 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/
DLICENSE152 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/
DLICENSE152 of the Database, and can also include the Database tables and table
/packages/modules/GeoTZ/tzbb_data/
DDATA_LICENSE152 of the Database, and can also include the Database tables and table
DLICENSE152 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/
DLICENSE152 of the Database, and can also include the Database tables and table

12