Home
last modified time | relevance | path

Searched refs:triggerDebugKey (Results 1 – 9 of 9) sorted by relevance

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/reporting/
DDebugKeyAccessor.java97 UnsignedLong triggerDebugKey = null; in getDebugKeys() local
107 triggerDebugKey = trigger.getDebugKey(); in getDebugKeys()
117 triggerDebugKey = trigger.getDebugKey(); in getDebugKeys()
124 triggerDebugKey = trigger.getDebugKey(); in getDebugKeys()
140 triggerDebugKey = trigger.getDebugKey(); in getDebugKeys()
156 triggerDebugKey = trigger.getDebugKey(); in getDebugKeys()
166 triggerDebugKey = trigger.getDebugKey(); in getDebugKeys()
179 return new Pair<>(sourceDebugKey, triggerDebugKey); in getDebugKeys()
205 UnsignedLong triggerDebugKey = null; in getDebugKeysForVerboseTriggerDebugReport() local
215 triggerDebugKey = trigger.getDebugKey(); in getDebugKeysForVerboseTriggerDebugReport()
[all …]
DEventReportPayload.java162 public @NonNull Builder setTriggerDebugKey(@Nullable UnsignedLong triggerDebugKey) { in setTriggerDebugKey() argument
163 mBuilding.mTriggerDebugKey = triggerDebugKey; in setTriggerDebugKey()
DAggregateReportBody.java221 public @NonNull Builder setTriggerDebugKey(@Nullable UnsignedLong triggerDebugKey) { in setTriggerDebugKey() argument
222 mBuilding.mTriggerDebugKey = triggerDebugKey; in setTriggerDebugKey()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/util/
DDebug.java39 @Nullable UnsignedLong sourceDebugKey, @Nullable UnsignedLong triggerDebugKey) { in isAttributionDebugReportPermitted() argument
42 return sourceDebugKey != null && triggerDebugKey != null; in isAttributionDebugReportPermitted()
44 return sourceDebugKey != null || triggerDebugKey != null; in isAttributionDebugReportPermitted()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/reporting/
DEventReportPayloadTest.java50 UnsignedLong sourceDebugKey, UnsignedLong triggerDebugKey) { in createEventReportPayload() argument
52 triggerData, sourceDebugKey, triggerDebugKey, ATTRIBUTION_DESTINATIONS); in createEventReportPayload()
56 UnsignedLong sourceDebugKey, UnsignedLong triggerDebugKey, List<Uri> destinations) { in createEventReportPayload() argument
66 .setTriggerDebugKey(triggerDebugKey) in createEventReportPayload()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/aggregation/
DAggregateReport.java408 public Builder setTriggerDebugKey(UnsignedLong triggerDebugKey) { in setTriggerDebugKey() argument
409 mAttributionReport.mTriggerDebugKey = triggerDebugKey; in setTriggerDebugKey()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/
DEventReport.java360 public Builder setTriggerDebugKey(UnsignedLong triggerDebugKey) { in setTriggerDebugKey() argument
361 mBuilding.mTriggerDebugKey = triggerDebugKey; in setTriggerDebugKey()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/
DE2EMockTest.java543 String triggerDebugKey = data.optString(AggregateReportPayloadKeys.TRIGGER_DEBUG_KEY); in getActualAggregatablePayloadForTest() local
555 if (!triggerDebugKey.isEmpty()) { in getActualAggregatablePayloadForTest()
556 aggregateJson.put(AggregateReportPayloadKeys.TRIGGER_DEBUG_KEY, triggerDebugKey); in getActualAggregatablePayloadForTest()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/attribution/
DAttributionJobHandler.java347 UnsignedLong triggerDebugKey = debugKeyPair.second; in maybeGenerateAggregateReport() local
351 triggerDebugKey)) { in maybeGenerateAggregateReport()
372 .setTriggerDebugKey(triggerDebugKey) in maybeGenerateAggregateReport()