Home
last modified time | relevance | path

Searched refs:processUpdates (Results 1 – 15 of 15) sorted by relevance

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/signals/
DUpdateProcessingOrchestratorTest.java107 mUpdateProcessingOrchestrator.processUpdates( in testUpdatesProcessorEmptyJson()
133 public UpdateOutput processUpdates( in testUpdatesProcessorBadJson()
147 mUpdateProcessingOrchestrator.processUpdates( in testUpdatesProcessorBadJson()
178 mUpdateProcessingOrchestrator.processUpdates( in testUpdatesProcessorSingleInsert()
208 mUpdateProcessingOrchestrator.processUpdates( in testUpdatesProcessorSingleInsertJsonArray()
238 mUpdateProcessingOrchestrator.processUpdates( in testUpdatesProcessorSingleRemove()
274 mUpdateProcessingOrchestrator.processUpdates( in testUpdatesProcessorTwoInserts()
322 mUpdateProcessingOrchestrator.processUpdates( in testUpdatesProcessorTwoInsertsSameKey()
351 mUpdateProcessingOrchestrator.processUpdates( in testUpdatesProcessorTwoDeletesSameKey()
372 mUpdateProcessingOrchestrator.processUpdates( in testUpdatesProcessorNoEncoderUpdates()
[all …]
DUpdateSignalsOrchestratorTest.java98 .processUpdates( in testOrchestrateUpdate()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/signals/updateprocessors/
DAppendTest.java92 UpdateOutput output = mAppend.processUpdates(updatesJson, Collections.emptyMap()); in testAppendSingle()
114 UpdateOutput output = mAppend.processUpdates(updatesJson, Collections.emptyMap()); in testAppendMultipleValues()
146 UpdateOutput output = mAppend.processUpdates(updatesJson, Collections.emptyMap()); in testAppendMultipleKeys()
176 UpdateOutput output = mAppend.processUpdates(updatesJson, existingSignals); in testOverwriteExisting()
206 UpdateOutput output = mAppend.processUpdates(updatesJson, existingSignals); in testOverwriteMultipleExisting()
234 UpdateOutput output = mAppend.processUpdates(updatesJson, existingSignals); in testAddToExisting()
258 () -> mAppend.processUpdates(updatesJson, Collections.emptyMap())); in testBadMaxValueThrowsException()
DUpdateEncoderTest.java57 UpdateOutput output = mUpdateEncoder.processUpdates(updateJson, Collections.emptyMap()); in testUpdateEmptyEvent()
73 mUpdateEncoder.processUpdates(updateJson, Collections.emptyMap()); in testUpdateEventInvalidType()
83 UpdateOutput output = mUpdateEncoder.processUpdates(updateJson, Collections.emptyMap()); in testUpdateRegisterEvent()
DPutTest.java80 UpdateOutput output = mPut.processUpdates(updatesJson, Collections.emptyMap()); in testPutSingle()
95 UpdateOutput output = mPut.processUpdates(updatesJson, Collections.emptyMap()); in testPutMultipleKeys()
116 UpdateOutput output = mPut.processUpdates(updatesJson, existingSignals); in testOverwriteExisting()
138 UpdateOutput output = mPut.processUpdates(updatesJson, existingSignals); in testOverwriteMultipleExisting()
DRemoveTest.java68 UpdateOutput output = mRemove.processUpdates(updatesJson, Collections.emptyMap()); in testRemoveSingleNotPresent()
84 UpdateOutput output = mRemove.processUpdates(updatesJson, existingSignals); in testRemoveSinglePresent()
100 UpdateOutput output = mRemove.processUpdates(updatesJson, existingSignals); in testRemoveMultiplePresent()
DPutIfNotPresentTest.java77 UpdateOutput output = mPutIfNotPresent.processUpdates(updatesJson, Collections.emptyMap()); in testPutSingle()
92 UpdateOutput output = mPutIfNotPresent.processUpdates(updatesJson, Collections.emptyMap()); in testPutMultipleKeys()
114 UpdateOutput output = mPutIfNotPresent.processUpdates(updatesJson, existingSignals); in testKeepExisting()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/signals/updateprocessors/
DUpdateProcessor.java45 UpdateOutput processUpdates(Object updates, Map<ByteBuffer, Set<DBProtectedSignal>> current) in processUpdates() method
DRemove.java44 public UpdateOutput processUpdates( in processUpdates() method in Remove
DUpdateEncoder.java55 public UpdateOutput processUpdates( in processUpdates() method in UpdateEncoder
DPutIfNotPresent.java45 public UpdateOutput processUpdates( in processUpdates() method in PutIfNotPresent
DPut.java45 public UpdateOutput processUpdates( in processUpdates() method in Put
DAppend.java61 public UpdateOutput processUpdates( in processUpdates() method in Append
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/signals/
DUpdateProcessingOrchestrator.java84 public void processUpdates( in processUpdates() method in UpdateProcessingOrchestrator
208 .processUpdates(json.get(key), currentSignalsMap); in runProcessors()
DUpdateSignalsOrchestrator.java81 mUpdateProcessingOrchestrator.processUpdates( in orchestrateUpdate()