Home
last modified time | relevance | path

Searched refs:defaultConsent (Results 1 – 13 of 13) sorted by relevance

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/consent/
DAppConsentStorageManager.java479 public void recordDefaultConsent(boolean defaultConsent) throws IOException { in recordDefaultConsent() argument
480 mDatastore.put(ConsentConstants.DEFAULT_CONSENT, defaultConsent); in recordDefaultConsent()
484 public void recordTopicsDefaultConsent(boolean defaultConsent) throws IOException { in recordTopicsDefaultConsent() argument
485 mDatastore.put(ConsentConstants.TOPICS_DEFAULT_CONSENT, defaultConsent); in recordTopicsDefaultConsent()
489 public void recordFledgeDefaultConsent(boolean defaultConsent) throws IOException { in recordFledgeDefaultConsent() argument
490 mDatastore.put(ConsentConstants.FLEDGE_DEFAULT_CONSENT, defaultConsent); in recordFledgeDefaultConsent()
494 public void recordMeasurementDefaultConsent(boolean defaultConsent) throws IOException { in recordMeasurementDefaultConsent() argument
495 mDatastore.put(ConsentConstants.MEASUREMENT_DEFAULT_CONSENT, defaultConsent); in recordMeasurementDefaultConsent()
DAdServicesStorageManager.java439 public void recordDefaultConsent(boolean defaultConsent) { in recordDefaultConsent() argument
440 mAdServicesManager.recordDefaultConsent(defaultConsent); in recordDefaultConsent()
444 public void recordTopicsDefaultConsent(boolean defaultConsent) { in recordTopicsDefaultConsent() argument
445 mAdServicesManager.recordTopicsDefaultConsent(defaultConsent); in recordTopicsDefaultConsent()
449 public void recordFledgeDefaultConsent(boolean defaultConsent) { in recordFledgeDefaultConsent() argument
450 mAdServicesManager.recordFledgeDefaultConsent(defaultConsent); in recordFledgeDefaultConsent()
454 public void recordMeasurementDefaultConsent(boolean defaultConsent) { in recordMeasurementDefaultConsent() argument
455 mAdServicesManager.recordMeasurementDefaultConsent(defaultConsent); in recordMeasurementDefaultConsent()
DIConsentStorage.java324 void recordDefaultConsent(boolean defaultConsent) throws IOException; in recordDefaultConsent() argument
327 void recordTopicsDefaultConsent(boolean defaultConsent) throws IOException; in recordTopicsDefaultConsent() argument
330 void recordFledgeDefaultConsent(boolean defaultConsent) throws IOException; in recordFledgeDefaultConsent() argument
333 void recordMeasurementDefaultConsent(boolean defaultConsent) throws IOException; in recordMeasurementDefaultConsent() argument
DConsentManager.java1329 public void recordDefaultConsent(boolean defaultConsent) {
1331 ConsentManagerV2.getInstance().recordDefaultConsent(defaultConsent);
1335 () -> mDatastore.put(ConsentConstants.DEFAULT_CONSENT, defaultConsent),
1336 () -> mAdServicesManager.recordDefaultConsent(defaultConsent),
1339 ConsentConstants.DEFAULT_CONSENT, defaultConsent),
1355 public void recordTopicsDefaultConsent(boolean defaultConsent) {
1357 ConsentManagerV2.getInstance().recordTopicsDefaultConsent(defaultConsent);
1361 () -> mDatastore.put(ConsentConstants.TOPICS_DEFAULT_CONSENT, defaultConsent),
1362 () -> mAdServicesManager.recordTopicsDefaultConsent(defaultConsent),
1365 ConsentConstants.TOPICS_DEFAULT_CONSENT, defaultConsent),
[all …]
DConsentCompositeStorage.java987 public void recordDefaultConsent(boolean defaultConsent) { in recordDefaultConsent() argument
990 storage.recordDefaultConsent(defaultConsent); in recordDefaultConsent()
1002 public void recordTopicsDefaultConsent(boolean defaultConsent) { in recordTopicsDefaultConsent() argument
1005 storage.recordTopicsDefaultConsent(defaultConsent); in recordTopicsDefaultConsent()
1017 public void recordFledgeDefaultConsent(boolean defaultConsent) { in recordFledgeDefaultConsent() argument
1020 storage.recordFledgeDefaultConsent(defaultConsent); in recordFledgeDefaultConsent()
1032 public void recordMeasurementDefaultConsent(boolean defaultConsent) { in recordMeasurementDefaultConsent() argument
1035 storage.recordMeasurementDefaultConsent(defaultConsent); in recordMeasurementDefaultConsent()
DConsentManagerV2.java1495 void recordDefaultConsent(boolean defaultConsent) { in recordDefaultConsent() argument
1496 mConsentCompositeStorage.recordDefaultConsent(defaultConsent); in recordDefaultConsent()
1500 void recordTopicsDefaultConsent(boolean defaultConsent) { in recordTopicsDefaultConsent() argument
1501 mConsentCompositeStorage.recordTopicsDefaultConsent(defaultConsent); in recordTopicsDefaultConsent()
1505 void recordFledgeDefaultConsent(boolean defaultConsent) { in recordFledgeDefaultConsent() argument
1506 mConsentCompositeStorage.recordFledgeDefaultConsent(defaultConsent); in recordFledgeDefaultConsent()
1510 void recordMeasurementDefaultConsent(boolean defaultConsent) { in recordMeasurementDefaultConsent() argument
1511 mConsentCompositeStorage.recordMeasurementDefaultConsent(defaultConsent); in recordMeasurementDefaultConsent()
/packages/modules/AdServices/adservices/framework/java/android/app/adservices/
DIAdServicesManager.aidl146 void recordDefaultConsent(in boolean defaultConsent); in recordDefaultConsent() argument
151 void recordTopicsDefaultConsent(in boolean defaultConsent); in recordTopicsDefaultConsent() argument
156 void recordFledgeDefaultConsent(in boolean defaultConsent); in recordFledgeDefaultConsent() argument
161 void recordMeasurementDefaultConsent(in boolean defaultConsent); in recordMeasurementDefaultConsent() argument
DAdServicesManager.java400 public void recordDefaultConsent(boolean defaultConsent) { in recordDefaultConsent() argument
402 mService.recordDefaultConsent(defaultConsent); in recordDefaultConsent()
410 public void recordTopicsDefaultConsent(boolean defaultConsent) { in recordTopicsDefaultConsent() argument
412 mService.recordTopicsDefaultConsent(defaultConsent); in recordTopicsDefaultConsent()
420 public void recordFledgeDefaultConsent(boolean defaultConsent) { in recordFledgeDefaultConsent() argument
422 mService.recordFledgeDefaultConsent(defaultConsent); in recordFledgeDefaultConsent()
430 public void recordMeasurementDefaultConsent(boolean defaultConsent) { in recordMeasurementDefaultConsent() argument
432 mService.recordMeasurementDefaultConsent(defaultConsent); in recordMeasurementDefaultConsent()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/stats/
DUIStats.java105 public void setDefaultConsent(int defaultConsent) { in setDefaultConsent() argument
106 mDefaultConsent = defaultConsent; in setDefaultConsent()
168 public @NonNull UIStats.Builder setDefaultConsent(int defaultConsent) { in setDefaultConsent() argument
169 mBuilding.mDefaultConsent = defaultConsent; in setDefaultConsent()
DUiStatsLogger.java582 Boolean defaultConsent = ConsentManager.getInstance().getDefaultConsent(); in getDefaultConsent() local
584 if (defaultConsent == null) { in getDefaultConsent()
587 return defaultConsent in getDefaultConsent()
/packages/modules/AdServices/adservices/service/java/com/android/server/adservices/consent/
DConsentManager.java270 public void recordDefaultConsent(boolean defaultConsent) { in recordDefaultConsent() argument
271 setValueWithLock(DEFAULT_CONSENT, defaultConsent, /* callerName */ "recordDefaultConsent"); in recordDefaultConsent()
275 public void recordTopicsDefaultConsent(boolean defaultConsent) { in recordTopicsDefaultConsent() argument
278 defaultConsent, /* callerName */ in recordTopicsDefaultConsent()
283 public void recordFledgeDefaultConsent(boolean defaultConsent) { in recordFledgeDefaultConsent() argument
286 defaultConsent, /* callerName */ in recordFledgeDefaultConsent()
291 public void recordMeasurementDefaultConsent(boolean defaultConsent) { in recordMeasurementDefaultConsent() argument
294 defaultConsent, /* callerName */ in recordMeasurementDefaultConsent()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/appsearch/
DAppSearchConsentStorageManager.java645 public void recordDefaultConsent(boolean defaultConsent) { in recordDefaultConsent() argument
646 mAppSearchConsentWorker.setConsent(ConsentConstants.DEFAULT_CONSENT, defaultConsent); in recordDefaultConsent()
650 public void recordTopicsDefaultConsent(boolean defaultConsent) { in recordTopicsDefaultConsent() argument
651 mAppSearchConsentWorker.setConsent(ConsentConstants.TOPICS_DEFAULT_CONSENT, defaultConsent); in recordTopicsDefaultConsent()
655 public void recordFledgeDefaultConsent(boolean defaultConsent) { in recordFledgeDefaultConsent() argument
656 mAppSearchConsentWorker.setConsent(ConsentConstants.FLEDGE_DEFAULT_CONSENT, defaultConsent); in recordFledgeDefaultConsent()
660 public void recordMeasurementDefaultConsent(boolean defaultConsent) { in recordMeasurementDefaultConsent() argument
662 ConsentConstants.MEASUREMENT_DEFAULT_CONSENT, defaultConsent); in recordMeasurementDefaultConsent()
/packages/modules/AdServices/adservices/service/java/com/android/server/adservices/
DAdServicesManagerService.java369 public void recordDefaultConsent(boolean defaultConsent) { in recordDefaultConsent() argument
377 .recordDefaultConsent(defaultConsent); in recordDefaultConsent()
385 public void recordTopicsDefaultConsent(boolean defaultConsent) { in recordTopicsDefaultConsent() argument
393 .recordTopicsDefaultConsent(defaultConsent); in recordTopicsDefaultConsent()
401 public void recordFledgeDefaultConsent(boolean defaultConsent) { in recordFledgeDefaultConsent() argument
409 .recordFledgeDefaultConsent(defaultConsent); in recordFledgeDefaultConsent()
417 public void recordMeasurementDefaultConsent(boolean defaultConsent) { in recordMeasurementDefaultConsent() argument
425 .recordMeasurementDefaultConsent(defaultConsent); in recordMeasurementDefaultConsent()