Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/os/
H A DIncidentManager.java91 public static final String URI_PARAM_CALLING_PACKAGE = "pkg"; field in IncidentManager
194 String requestingPackage = uri.getQueryParameter(URI_PARAM_CALLING_PACKAGE); in PendingReport()
196 throw new RuntimeException("Invalid URI: No " + URI_PARAM_CALLING_PACKAGE in PendingReport()
670 final String pkg = uri.getQueryParameter(URI_PARAM_CALLING_PACKAGE); in getIncidentReport()
673 + URI_PARAM_CALLING_PACKAGE + " parameter. " + uri); in getIncidentReport()
707 final String pkg = uri.getQueryParameter(URI_PARAM_CALLING_PACKAGE); in deleteIncidentReports()
710 + URI_PARAM_CALLING_PACKAGE + " parameter. " + uri); in deleteIncidentReports()
/aosp12/frameworks/base/services/core/java/com/android/server/incident/
H A DPendingReports.java105 .appendQueryParameter(IncidentManager.URI_PARAM_CALLING_PACKAGE, callingPackage) in getUri()