Home
last modified time | relevance | path

Searched refs:DATASTORE_KEY_SEPARATOR (Results 1 – 5 of 5) sorted by relevance

/packages/modules/AdServices/adservices/tests/unittest/system-service/src/com/android/server/adservices/consent/
DAppConsentManagerFixture.java19 import static com.android.server.adservices.consent.AppConsentManager.DATASTORE_KEY_SEPARATOR;
34 APP10_PACKAGE_NAME + DATASTORE_KEY_SEPARATOR + APP10_UID;
36 APP20_PACKAGE_NAME + DATASTORE_KEY_SEPARATOR + APP20_UID;
38 APP30_PACKAGE_NAME + DATASTORE_KEY_SEPARATOR + APP30_UID;
/packages/modules/AdServices/adservices/tests/unittest/fixtures/java/com/android/adservices/data/consent/
DAppConsentDaoFixture.java19 import static com.android.adservices.data.consent.AppConsentDao.DATASTORE_KEY_SEPARATOR;
34 APP10_PACKAGE_NAME + DATASTORE_KEY_SEPARATOR + APP10_UID;
36 APP20_PACKAGE_NAME + DATASTORE_KEY_SEPARATOR + APP20_UID;
38 APP30_PACKAGE_NAME + DATASTORE_KEY_SEPARATOR + APP30_UID;
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/consent/
DAppConsentDao.java54 @VisibleForTesting static final String DATASTORE_KEY_SEPARATOR = " "; field in AppConsentDao
259 mDatastore.removeByPrefix(packageName + DATASTORE_KEY_SEPARATOR); in clearConsentForUninstalledApp()
276 return packageName.concat(DATASTORE_KEY_SEPARATOR).concat(Integer.toString(packageUid)); in toDatastoreKey()
310 int separatorIndex = datastoreKey.lastIndexOf(DATASTORE_KEY_SEPARATOR); in datastoreKeyToPackageName()
/packages/modules/AdServices/adservices/service/java/com/android/server/adservices/consent/
DAppConsentManager.java43 @VisibleForTesting static final String DATASTORE_KEY_SEPARATOR = " "; field in AppConsentManager
217 return packageName.concat(DATASTORE_KEY_SEPARATOR).concat(Integer.toString(packageUid)); in toDatastoreKey()
233 int separatorIndex = datastoreKey.lastIndexOf(DATASTORE_KEY_SEPARATOR); in datastoreKeyToPackageName()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/consent/
DAppConsentDaoTest.java19 import static com.android.adservices.data.consent.AppConsentDao.DATASTORE_KEY_SEPARATOR;
512 + DATASTORE_KEY_SEPARATOR in testClearAllConsentForUninstalledApp()
520 + DATASTORE_KEY_SEPARATOR in testClearAllConsentForUninstalledApp()