Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/job/controllers/
DJobStatus.java96 final String sourcePackageName; field in JobStatus
197 private JobStatus(JobInfo job, int callingUid, String sourcePackageName, in JobStatus() argument
204 if (sourceUserId != -1 && sourcePackageName != null) { in JobStatus()
206 tempSourceUid = AppGlobals.getPackageManager().getPackageUid(sourcePackageName, 0, in JobStatus()
215 this.sourcePackageName = job.getService().getPackageName(); in JobStatus()
220 this.sourcePackageName = sourcePackageName; in JobStatus()
283 public JobStatus(JobInfo job, int callingUid, String sourcePackageName, int sourceUserId, in JobStatus() argument
285 this(job, callingUid, sourcePackageName, sourceUserId, sourceTag, 0, in JobStatus()
305 public static JobStatus createFromJobInfo(JobInfo job, int callingUid, String sourcePackageName, in createFromJobInfo() argument
318 return new JobStatus(job, callingUid, sourcePackageName, sourceUserId, tag, 0, in createFromJobInfo()
[all …]
/frameworks/base/services/core/java/com/android/server/job/
DJobStore.java580 String sourcePackageName = parser.getAttributeValue(null, "sourcePackageName"); in restoreJobFromXml() local
698 if ("android".equals(sourcePackageName) in restoreJobFromXml()
701 sourcePackageName = extras.getString("owningPackage", sourcePackageName); in restoreJobFromXml()
704 + sourcePackageName + "'"); in restoreJobFromXml()
710 jobBuilder.build(), uid, sourcePackageName, sourceUserId, sourceTag, in restoreJobFromXml()