Home | History | Annotate | Download | only in job

Lines Matching refs:uId

139     public boolean containsJobIdForUid(int jobId, int uId) {
142 if (ts.getUid() == uId && ts.getJobId() == jobId) {
198 * @param uid Uid of the requesting app.
199 * @return All JobStatus objects for a given uid from the master list. Never null.
201 public List<JobStatus> getJobsByUid(int uid) {
206 if (ts.getUid() == uid) {
214 * @param uid Uid of the requesting app.
216 * @return the JobStatus that matches the provided uId and jobId, or null if none found.
218 public JobStatus getJobByUidAndJobId(int uid, int jobId) {
222 if (ts.getUid() == uid && ts.getJobId() == jobId) {
338 out.attribute(null, "uid", Integer.toString(jobStatus.getUid()));
515 int uid;
521 uid = Integer.valueOf(parser.getAttributeValue(null, "uid"));
611 return new JobStatus(jobBuilder.build(), uid, runtimes.first, runtimes.second);