Lines Matching refs:argsCopy
254 IncidentReportArgs argsCopy(args); in reportIncident() local
258 argsCopy.setPrivacyPolicy(cleanup_privacy_policy(args.getPrivacyPolicy())); in reportIncident()
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()
278 argsCopy.setReceiverPkg(DROPBOX_SENTINEL.getPackageName()); 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()
298 argsCopy.setPrivacyPolicy(cleanup_privacy_policy(args.getPrivacyPolicy())); in reportIncidentToStream()
300 Status status = checkIncidentPermissions(argsCopy); in reportIncidentToStream()
311 mHandler->scheduleStreamingReport(argsCopy, listener, fd); in reportIncidentToStream()