Home
last modified time | relevance | path

Searched refs:getSchema (Results 1 – 23 of 23) sorted by relevance

/packages/modules/AppSearch/testing/servicestests/src/com/android/server/appsearch/external/localstorage/visibilitystore/
DVisibilityStoreMigrationFromV2Test.java110 appSearchImplInV2.getSchema( in testVisibilityMigration_from2()
120 appSearchImplInV2.getSchema( in testVisibilityMigration_from2()
200 appSearchImpl.getSchema( in testVisibilityMigration_from2()
210 appSearchImpl.getSchema( in testVisibilityMigration_from2()
DVisibilityStoreTest.java107 mAppSearchImpl.getSchema( in testSetVisibilitySchema()
118 mAppSearchImpl.getSchema( in testSetVisibilitySchema()
424 mAppSearchImpl.getSchema( in testMigrateFromDeprecatedSchema()
514 mAppSearchImpl.getSchema( in testMigrateFromDeprecatedOverlaySchema()
/packages/modules/AppSearch/testing/servicestests/src/com/android/server/appsearch/external/localstorage/converter/
DSearchSpecToProtoConverterTest.java993 assertThat(PrefixUtil.removePrefix(grouping1.getEntryGroupings(0).getSchema())) in testToResultSpecProto_groupBySchema()
994 .isEqualTo(PrefixUtil.removePrefix(grouping1.getEntryGroupings(1).getSchema())); in testToResultSpecProto_groupBySchema()
999 assertThat(PrefixUtil.removePrefix(grouping2.getEntryGroupings(0).getSchema())) in testToResultSpecProto_groupBySchema()
1000 .isEqualTo(PrefixUtil.removePrefix(grouping2.getEntryGroupings(1).getSchema())); in testToResultSpecProto_groupBySchema()
1127 assertThat(grouping1.getEntryGroupings(0).getSchema()).isEqualTo("package1$database/typeA"); in testToResultSpecProto_groupByNamespaceAndSchema()
1130 assertThat(grouping1.getEntryGroupings(1).getSchema()).isEqualTo("package2$database/typeA"); in testToResultSpecProto_groupByNamespaceAndSchema()
1139 assertThat(grouping2.getEntryGroupings(0).getSchema()).isEqualTo("package1$database/typeB"); in testToResultSpecProto_groupByNamespaceAndSchema()
1142 assertThat(grouping2.getEntryGroupings(1).getSchema()).isEqualTo("package2$database/typeB"); in testToResultSpecProto_groupByNamespaceAndSchema()
1151 assertThat(grouping3.getEntryGroupings(0).getSchema()).isEqualTo("package1$database/typeA"); in testToResultSpecProto_groupByNamespaceAndSchema()
1154 assertThat(grouping3.getEntryGroupings(1).getSchema()).isEqualTo("package2$database/typeA"); in testToResultSpecProto_groupByNamespaceAndSchema()
[all …]
/packages/modules/HealthFitness/tests/cts/hostsidetests/healthconnect/host/src/android/healthconnect/cts/database/
DHealthConnectDatabaseBackwardCompatibilityTest.java85 public static String getSchema(ITestDevice device) throws DeviceNotAvailableException { in getSchema() method in HealthConnectDatabaseBackwardCompatibilityTest
109 String currentVersionSchema = getSchema(getDevice()); in checkBackwardCompatibility()
122 String previousVersionSchema = getSchema(getDevice()); in checkBackwardCompatibility()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/util/
DPrefixUtil.java156 String newSchema = prefix + documentBuilder.getSchema(); in addPrefixToDocument()
192 String schemaPrefix = getPrefix(documentBuilder.getSchema()); in removePrefixesFromDocument()
205 documentBuilder.setSchema(removePrefix(documentBuilder.getSchema())); in removePrefixesFromDocument()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/util/
DAdbDumpUtil.java87 corpusInfoBuilder.setSchema(generateFingerprintMd5(corpusInfoBuilder.getSchema())); in desensitizeDebugInfo()
106 SchemaProto.Builder schemaBuilder = schemaInfoBuilder.getSchema().toBuilder(); in desensitizeDebugInfo()
/packages/modules/AppSearch/framework/java/android/app/appsearch/
DReadOnlyGlobalSearchSession.java206 public void getSchema( in getSchema() method in ReadOnlyGlobalSearchSession
216 mService.getSchema( in getSchema()
DGlobalSearchSession.java176 public void getSchema( in getSchema() method in GlobalSearchSession
182 super.getSchema(packageName, databaseName, executor, callback); in getSchema()
DAppSearchSession.java239 public void getSchema( in getSchema() method in AppSearchSession
247 mService.getSchema( in getSchema()
1034 getSchema( in setSchemaWithMigrations()
/packages/modules/AppSearch/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/
DAppSearchHelperTest.java133 session.getSchema(mSingleThreadedExecutor, responseFuture::complete); in testAppSearchHelper_permissionIsSetCorrectlyForPerson()
344 .addSchemas(ContactPoint.SCHEMA, Person.getSchema(config)) in testPersonSchema_indexFirstMiddleAndLastNames()
394 .addSchemas(ContactPoint.SCHEMA, Person.getSchema(mConfigForTest)) in testPersonSchema_indexFullNameOnly()
DContactsIndexerUserInstanceTest.java793 Person.getSchema(mConfigForTest)) in testDeltaUpdate_notTriggered_afterCompatibleSchemaChange()
840 Person.getSchema(mConfigForTest)) in testDeltaUpdate_triggered_afterIncompatibleSchemaChange()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/visibilitystore/
DVisibilityStore.java88 mAppSearchImpl.getSchema( in VisibilityStore()
383 mAppSearchImpl.getSchema( in migrateVisibilityOverlayDatabase()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/
DAppSearchImpl.java556 getSchema( in doSetSchemaWithChangeNotificationLocked()
882 public GetSchemaResponse getSchema( in getSchema() method in AppSearchImpl
1223 documentProto.getSchema(), in globalGetDocument()
1909 schemaType = PrefixUtil.removePrefix(getResult.getDocument().getSchema()); in remove()
2114 if (!prefixedObservedSchemas.contains(group.getSchema())) { in dispatchChangeNotificationsAfterRemoveByQueryLocked()
2119 String schemaType = PrefixUtil.removePrefix(group.getSchema()); in dispatchChangeNotificationsAfterRemoveByQueryLocked()
2585 GetSchemaResultProto schemaProto = mIcingSearchEngineLocked.getSchema(); in getSchemaProtoLocked()
2590 return schemaProto.getSchema(); in getSchemaProtoLocked()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/converter/
DGenericDocumentToProtoConverter.java155 proto.getNamespace(), proto.getUri(), proto.getSchema()) in toGenericDocument()
159 String prefixedSchemaType = prefix + proto.getSchema(); in toGenericDocument()
/packages/modules/AppSearch/framework/java/android/app/appsearch/aidl/
DIAppSearchManager.aidl91 void getSchema( in getSchema() method
/packages/modules/AppSearch/testing/servicestests/src/com/android/server/appsearch/external/localstorage/
DAppSearchImplTest.java623 .getSchema( in testReset()
3199 mAppSearchImpl.getSchema( in testThrowsExceptionIfClosed()
3602 assertThat(debugInfo.getSchemaInfo().getSchema().getTypesList()) in testGetIcingSearchEngineDebugInfo()
5328 mAppSearchImpl.getSchema( in testGetSchema_global()
5353 mAppSearchImpl.getSchema( in testGetSchema_nonExistentApp()
5377 mAppSearchImpl.getSchema( in testGetSchema_noAccess()
5389 mAppSearchImpl.getSchema( in testGetSchema_noAccess()
5451 mAppSearchImpl.getSchema( in testGetSchema_global_partialAccess()
5543 mAppSearchImpl.getSchema( in testGetSchema_global_publicAcl()
5549 mAppSearchImpl.getSchema( in testGetSchema_global_publicAcl()
[all …]
/packages/modules/AppSearch/service/java/com/android/server/appsearch/contactsindexer/appsearchtypes/
DPerson.java255 public static AppSearchSchema getSchema(ContactsIndexerConfig config) { in getSchema() method in Person
/packages/modules/AppSearch/testing/mockingservicestests/src/com/android/server/appsearch/
DAppSearchManagerServiceTest.java342 mAppSearchManagerServiceStub.getSchema( in testLocalGetSchemaStatsLogging()
357 mAppSearchManagerServiceStub.getSchema( in testGlobalGetSchemaStatsLogging()
1406 mAppSearchManagerServiceStub.getSchema( in testEnterpriseGetSchema_noEnterpriseUser_emptyResult()
1626 mAppSearchManagerServiceStub.getSchema( in verifyLocalGetSchemaResult()
1639 mAppSearchManagerServiceStub.getSchema( in verifyGlobalGetSchemaResult()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/contactsindexer/
DAppSearchHelper.java225 .addSchemas(ContactPoint.SCHEMA, Person.getSchema(mContactsIndexerConfig)) in setPersonSchemaAsync()
/packages/modules/AppSearch/framework/api/
Dcurrent.txt188 …method public void getSchema(@NonNull java.util.concurrent.Executor, @NonNull java.util.function.C…
215 …method public void getSchema(@NonNull String, @NonNull String, @NonNull java.util.concurrent.Execu…
314 …method public void getSchema(@NonNull String, @NonNull String, @NonNull java.util.concurrent.Execu…
/packages/services/Car/tests/BugReportApp/libs/
Djackson-core-2.9.9.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE META-INF ...
/packages/modules/AppSearch/service/java/com/android/server/appsearch/
DAppSearchManagerService.java551 public void getSchema( in getSchema() method in AppSearchManagerService.Stub
598 instance.getAppSearchImpl().getSchema( in getSchema()
/packages/apps/Car/DebuggingRestrictionController/libs/
Djackson-core-2.11.1.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE META-INF ...