Searched defs:uId (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/job/
H A DJobSchedulerService.java509 * @param uId The package identifier of the application this job is for.
512 public int schedule(JobInfo job, int uId) { argument
513 return scheduleAsPackage(job, uId, null, -1, null);
516 public int scheduleAsPackage(JobInfo job, int uId, String packageName, int userId, argument
518 JobStatus jobStatus = JobStatus.createFromJobInfo(job, uId, packageName, userId, tag);
520 if (ActivityManagerNative.getDefault().getAppStartMode(uId,
522 Slog.w(TAG, "Not scheduling job " + uId + ":" + job.toString()
533 if (mJobs.countJobsForUid(uId) > MAX_JOBS_PER_APP) {
534 Slog.w(TAG, "Too many jobs for uid " + uId);
540 toCancel = mJobs.getJobByUidAndJobId(uId, jo
[all...]

Completed in 556 milliseconds