Home
last modified time | relevance | path

Searched refs:maxEventStates (Results 1 – 4 of 4) sorted by relevance

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/noising/
DCombinatorics.java329 long maxEventStates, in getMaxInformationGainWithAttributionScope() argument
331 if (numTriggerStates <= 0 || maxEventStates <= 0) { in getMaxInformationGainWithAttributionScope()
337 if (attributionScopeLimit > maxEventStates) { in getMaxInformationGainWithAttributionScope()
340 for (long numEventStates = 1; numEventStates <= maxEventStates; ++numEventStates) { in getMaxInformationGainWithAttributionScope()
357 long end = maxEventStates; in getMaxInformationGainWithAttributionScope()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/
DSource.java328 long maxEventStates = getMaxEventStates() == null ? 1L : getMaxEventStates(); in getInformationGain() local
332 maxEventStates, in getInformationGain()
1147 private void setMaxEventStates(long maxEventStates) { in setMaxEventStates() argument
1148 mMaxEventStates = maxEventStates; in setMaxEventStates()
1782 public Builder setMaxEventStates(@Nullable Long maxEventStates) { in setMaxEventStates() argument
1783 mBuilding.mMaxEventStates = maxEventStates; in setMaxEventStates()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/registration/
DAsyncSourceFetcher.java545 long maxEventStates = in populateAttributionScopeFields() local
547 if (maxEventStates <= 0 in populateAttributionScopeFields()
548 || maxEventStates in populateAttributionScopeFields()
556 builder.setMaxEventStates(maxEventStates); in populateAttributionScopeFields()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/measurement/
DMeasurementDaoTest.java10891 Long maxEventStates, in insertSourceForAttributionScope() argument
10898 maxEventStates, in insertSourceForAttributionScope()
10908 Long maxEventStates, in insertSourceForAttributionScope() argument
10917 .setMaxEventStates(maxEventStates) in insertSourceForAttributionScope()
10930 .isEqualTo(attributionScopeEnabled ? maxEventStates : null); in insertSourceForAttributionScope()