Home
last modified time | relevance | path

Searched refs:argsCopy (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/cmds/incidentd/src/
H A DIncidentService.cpp254 IncidentReportArgs argsCopy(args); in reportIncident() local
271 if (argsCopy.getPrivacyPolicy() < PRIVACY_POLICY_EXPLICIT) { in reportIncident()
273 argsCopy.setPrivacyPolicy(PRIVACY_POLICY_EXPLICIT); in reportIncident()
277 if (argsCopy.receiverPkg().length() == 0 && argsCopy.receiverCls().length() == 0) { in reportIncident()
279 argsCopy.setReceiverCls(DROPBOX_SENTINEL.getClassName()); in reportIncident()
282 mHandler->schedulePersistedReport(argsCopy); in reportIncident()
290 IncidentReportArgs argsCopy(args); in reportIncidentToStream() local
293 argsCopy.setReceiverPkg(""); in reportIncidentToStream()
294 argsCopy.setReceiverCls(""); in reportIncidentToStream()
300 Status status = checkIncidentPermissions(argsCopy); in reportIncidentToStream()
[all …]
/aosp14/frameworks/base/libs/hwui/renderthread/
H A DReliableSurface.cpp240 va_list argsCopy; in hook_perform() local
241 va_copy(argsCopy, args); in hook_perform()
242 int result = perform(window, operation, argsCopy); in hook_perform()