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.java81 final String sourcePackageName; field in JobStatus
129 private JobStatus(JobInfo job, int callingUid, String sourcePackageName, in JobStatus() argument
136 if (sourceUserId != -1 && sourcePackageName != null) { in JobStatus()
138 tempSourceUid = AppGlobals.getPackageManager().getPackageUid(sourcePackageName, 0, in JobStatus()
147 this.sourcePackageName = job.getService().getPackageName(); in JobStatus()
152 this.sourcePackageName = sourcePackageName; in JobStatus()
208 public JobStatus(JobInfo job, int callingUid, String sourcePackageName, int sourceUserId, in JobStatus() argument
210 this(job, callingUid, sourcePackageName, sourceUserId, sourceTag, 0, in JobStatus()
230 public static JobStatus createFromJobInfo(JobInfo job, int callingUid, String sourcePackageName, in createFromJobInfo() argument
243 return new JobStatus(job, callingUid, sourcePackageName, sourceUserId, tag, 0, in createFromJobInfo()
[all …]
/frameworks/base/services/core/java/com/android/server/job/
DJobStore.java558 String sourcePackageName = parser.getAttributeValue(null, "sourcePackageName"); in restoreJobFromXml() local
676 if ("android".equals(sourcePackageName) in restoreJobFromXml()
679 sourcePackageName = extras.getString("owningPackage", sourcePackageName); in restoreJobFromXml()
682 + sourcePackageName + "'"); in restoreJobFromXml()
688 jobBuilder.build(), uid, sourcePackageName, sourceUserId, sourceTag, in restoreJobFromXml()