Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/signals/updateprocessors/
DUpdateEncoder.java58 JSONObject updatesObject = UpdateProcessorUtils.castToJSONObject(UPDATE_ENCODER, updates); in processUpdates() local
61 if (!updatesObject.has(ACTION)) { in processUpdates()
65 String action = updatesObject.getString(ACTION); in processUpdates()
70 if (updatesObject.has(ENDPOINT)) { in processUpdates()
71 String uriString = updatesObject.getString(ENDPOINT); in processUpdates()
DPutIfNotPresent.java48 JSONObject updatesObject = in processUpdates() local
50 for (Iterator<String> iter = updatesObject.keys(); iter.hasNext(); ) { in processUpdates()
53 processKey(key, updatesObject.getString(stringKey), current, toReturn); in processUpdates()
DPut.java48 JSONObject updatesObject = UpdateProcessorUtils.castToJSONObject(PUT, updates); in processUpdates() local
49 for (Iterator<String> iter = updatesObject.keys(); iter.hasNext(); ) { in processUpdates()
52 processKey(key, updatesObject.getString(stringKey), current, toReturn); in processUpdates()
DAppend.java64 JSONObject updatesObject = UpdateProcessorUtils.castToJSONObject(APPEND, updates); in processUpdates() local
66 for (Iterator<String> iter = updatesObject.keys(); iter.hasNext(); ) { in processUpdates()
69 JSONObject update = updatesObject.getJSONObject(stringKey); in processUpdates()