Home | History | Annotate | Download | only in controllers

Lines Matching refs:uId

45     /** Uid of the package requesting this job. */
46 final int uId;
73 return uId;
76 private JobStatus(JobInfo job, int uId, int numFailures) {
78 this.uId = uId;
85 public JobStatus(JobInfo job, int uId) {
86 this(job, uId, 0);
108 public JobStatus(JobInfo job, int uId, long earliestRunTimeElapsedMillis,
110 this(job, uId, 0);
142 return UserHandle.getUserId(uId);
146 return uId;
217 public boolean matches(int uid, int jobId) {
218 return this.job.getId() == jobId && this.uId == uid;