Home
last modified time | relevance | path

Searched refs:encryptedTopic (Results 1 – 14 of 14) sorted by relevance

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/topics/
DEncryptedTopic.java78 byte[] encryptedTopic, String keyIdentifier, byte[] encapsulatedKey) { in create() argument
79 Objects.requireNonNull(encryptedTopic); in create()
84 .setEncryptedTopic(encryptedTopic) in create()
94 public abstract EncryptedTopic.Builder setEncryptedTopic(byte[] encryptedTopic); in setEncryptedTopic() argument
111 EncryptedTopic encryptedTopic = (EncryptedTopic) object; in equals()
112 return Arrays.equals(getEncryptedTopic(), encryptedTopic.getEncryptedTopic()) in equals()
113 && getKeyIdentifier().equals(encryptedTopic.getKeyIdentifier()) in equals()
114 && Arrays.equals(getEncapsulatedKey(), encryptedTopic.getEncapsulatedKey()); in equals()
DCombinedTopic.java49 public static CombinedTopic create(Topic topic, EncryptedTopic encryptedTopic) { in create() argument
51 Objects.requireNonNull(encryptedTopic); in create()
53 return builder().setTopic(topic).setEncryptedTopic(encryptedTopic).build(); in create()
71 public abstract CombinedTopic.Builder setEncryptedTopic(EncryptedTopic encryptedTopic); in setEncryptedTopic() argument
DTopicsDao.java946 byte[] encryptedTopic = in retrieveReturnedEncryptedTopics()
968 EncryptedTopic.create(encryptedTopic, keyIdentifier, encapsulatedKey); in retrieveReturnedEncryptedTopics()
/packages/modules/AdServices/adservices/framework/java/android/adservices/topics/
DEncryptedTopic.java56 @NonNull byte[] encryptedTopic, in EncryptedTopic()
59 mEncryptedTopic = Objects.requireNonNull(encryptedTopic); in EncryptedTopic()
86 EncryptedTopic encryptedTopic = (EncryptedTopic) object; in equals()
87 return Arrays.equals(getEncryptedTopic(), encryptedTopic.getEncryptedTopic()) in equals()
88 && getKeyIdentifier().equals(encryptedTopic.getKeyIdentifier()) in equals()
89 && Arrays.equals(getEncapsulatedKey(), encryptedTopic.getEncapsulatedKey()); in equals()
DTopicsManager.java259 EncryptedTopic encryptedTopic = in getEncryptedTopicList() local
262 encryptedTopicList.add(encryptedTopic); in getEncryptedTopicList()
/packages/modules/AdServices/adservices/samples/topics/sampleapp6/java/com/example/adservices/samples/topics/sampleapp6/
DMainActivity.java184 for (EncryptedTopic encryptedTopic : arr) { in getDecryptedTopics()
187 encryptedTopic.getEncapsulatedKey(), in getDecryptedTopics()
188 encryptedTopic.getEncryptedTopic()); in getDecryptedTopics()
/packages/modules/AdServices/adservices/samples/topics/sampleappwithnoperm/java/com/example/adservices/samples/topics/sampleappwithnoperm/
DMainActivity.java186 for (EncryptedTopic encryptedTopic : arr) { in getDecryptedTopics()
189 encryptedTopic.getEncapsulatedKey(), in getDecryptedTopics()
190 encryptedTopic.getEncryptedTopic()); in getDecryptedTopics()
/packages/modules/AdServices/adservices/samples/topics/sampleapp3/java/com/example/adservices/samples/topics/sampleapp3/
DMainActivity.java187 for (EncryptedTopic encryptedTopic : arr) { in getDecryptedTopics()
190 encryptedTopic.getEncapsulatedKey(), in getDecryptedTopics()
191 encryptedTopic.getEncryptedTopic()); in getDecryptedTopics()
/packages/modules/AdServices/adservices/samples/topics/sampleapp2/java/com/example/adservices/samples/topics/sampleapp2/
DMainActivity.java187 for (EncryptedTopic encryptedTopic : arr) { in getDecryptedTopics()
190 encryptedTopic.getEncapsulatedKey(), in getDecryptedTopics()
191 encryptedTopic.getEncryptedTopic()); in getDecryptedTopics()
/packages/modules/AdServices/adservices/samples/topics/sampleappwithoptoutall/java/com/example/adservices/samples/topics/sampleappwithoptoutall/
DMainActivity.java186 for (EncryptedTopic encryptedTopic : arr) { in getDecryptedTopics()
189 encryptedTopic.getEncapsulatedKey(), in getDecryptedTopics()
190 encryptedTopic.getEncryptedTopic()); in getDecryptedTopics()
/packages/modules/AdServices/adservices/samples/topics/sampleapp5/java/com/example/adservices/samples/topics/sampleapp5/
DMainActivity.java185 for (EncryptedTopic encryptedTopic : arr) { in getDecryptedTopics()
188 encryptedTopic.getEncapsulatedKey(), in getDecryptedTopics()
189 encryptedTopic.getEncryptedTopic()); in getDecryptedTopics()
/packages/modules/AdServices/adservices/samples/topics/sampleapp4/java/com/example/adservices/samples/topics/sampleapp4/
DMainActivity.java187 for (EncryptedTopic encryptedTopic : arr) { in getDecryptedTopics()
190 encryptedTopic.getEncapsulatedKey(), in getDecryptedTopics()
191 encryptedTopic.getEncryptedTopic()); in getDecryptedTopics()
/packages/modules/AdServices/adservices/samples/topics/sampleapp1/java/com/example/adservices/samples/topics/sampleapp1/
DMainActivity.java125 for (EncryptedTopic encryptedTopic : arr) { in getDecryptedTopics()
128 encryptedTopic.getEncapsulatedKey(), in getDecryptedTopics()
129 encryptedTopic.getEncryptedTopic()); in getDecryptedTopics()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/topics/
DCacheManager.java261 EncryptedTopic encryptedTopic = EncryptedTopic.getDefaultInstance(); in getTopics() local
265 encryptedTopic = in getTopics()
276 CombinedTopic combinedTopic = CombinedTopic.create(topic, encryptedTopic); in getTopics()