Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/reporting/
DDebugKeyAccessor.java96 UnsignedLong sourceDebugKey = null; in getDebugKeys() local
104 sourceDebugKey = source.getDebugKey(); in getDebugKeys()
114 sourceDebugKey = source.getDebugKey(); in getDebugKeys()
123 sourceDebugKey = source.getDebugKey(); in getDebugKeys()
139 sourceDebugKey = source.getDebugKey(); in getDebugKeys()
155 sourceDebugKey = source.getDebugKey(); in getDebugKeys()
165 sourceDebugKey = source.getDebugKey(); in getDebugKeys()
179 return new Pair<>(sourceDebugKey, triggerDebugKey); in getDebugKeys()
204 UnsignedLong sourceDebugKey = null; in getDebugKeysForVerboseTriggerDebugReport() local
217 sourceDebugKey = source.getDebugKey(); in getDebugKeysForVerboseTriggerDebugReport()
[all …]
DEventReportPayload.java156 public @NonNull Builder setSourceDebugKey(@Nullable UnsignedLong sourceDebugKey) { in setSourceDebugKey() argument
157 mBuilding.mSourceDebugKey = sourceDebugKey; in setSourceDebugKey()
DAggregateReportBody.java215 public @NonNull Builder setSourceDebugKey(@Nullable UnsignedLong sourceDebugKey) { in setSourceDebugKey() argument
216 mBuilding.mSourceDebugKey = sourceDebugKey; in setSourceDebugKey()
/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
65 .setSourceDebugKey(sourceDebugKey) in createEventReportPayload()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/aggregation/
DAggregateReport.java402 public Builder setSourceDebugKey(UnsignedLong sourceDebugKey) { in setSourceDebugKey() argument
403 mAttributionReport.mSourceDebugKey = sourceDebugKey; in setSourceDebugKey()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/
DEventReport.java354 public Builder setSourceDebugKey(UnsignedLong sourceDebugKey) { in setSourceDebugKey() argument
355 mBuilding.mSourceDebugKey = sourceDebugKey; in setSourceDebugKey()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/
DE2EMockTest.java542 String sourceDebugKey = data.optString(AggregateReportPayloadKeys.SOURCE_DEBUG_KEY); in getActualAggregatablePayloadForTest() local
552 if (!sourceDebugKey.isEmpty()) { in getActualAggregatablePayloadForTest()
553 aggregateJson.put(AggregateReportPayloadKeys.SOURCE_DEBUG_KEY, sourceDebugKey); in getActualAggregatablePayloadForTest()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/attribution/
DAttributionJobHandler.java346 UnsignedLong sourceDebugKey = debugKeyPair.first; in maybeGenerateAggregateReport() local
350 if (Debug.isAttributionDebugReportPermitted(source, trigger, sourceDebugKey, in maybeGenerateAggregateReport()
371 .setSourceDebugKey(sourceDebugKey) in maybeGenerateAggregateReport()