/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/consent/ |
D | AppConsentStorageManager.java | 479 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()
|
D | AdServicesStorageManager.java | 439 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()
|
D | IConsentStorage.java | 324 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
|
D | ConsentManager.java | 1329 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 …]
|
D | ConsentCompositeStorage.java | 987 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()
|
D | ConsentManagerV2.java | 1495 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/ |
D | IAdServicesManager.aidl | 146 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
|
D | AdServicesManager.java | 400 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/ |
D | UIStats.java | 105 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()
|
D | UiStatsLogger.java | 582 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/ |
D | ConsentManager.java | 270 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/ |
D | AppSearchConsentStorageManager.java | 645 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/ |
D | AdServicesManagerService.java | 369 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()
|