Home | History | Annotate | Download | only in scheduling

Lines Matching defs:jobId

60     int jobId = params.getTransientExtras().getInt(EXTRA_JOB_ID);
64 if (jobId != expectedJobId) {
66 TAG, "Job " + jobId + " is not the last scheduled job " + expectedJobId + ", ignoring");
69 VvmLog.i(TAG, "starting " + jobId);
121 int jobId = createJobId(context);
122 extras.putInt(EXTRA_JOB_ID, jobId);
125 .putInt(EXPECTED_JOB_ID, jobId)
143 VvmLog.i(TAG, "job " + jobId + " scheduled");
177 int jobId = sharedPreferences.getInt(NEXT_JOB_ID, 0);
178 sharedPreferences.edit().putInt(NEXT_JOB_ID, jobId + 1).apply();
179 return jobId;