Home
last modified time | relevance | path

Searched refs:jobInfo (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/controller/
DDeletionJobServiceTest.kt73 val jobInfo = AuxiliaryPersistenceWrapper.DeletionJobService.getJobForContext(context) in testJobHasRightParameters() constant
75 AuxiliaryPersistenceWrapper.DeletionJobService.DELETE_FILE_JOB_ID + userId, jobInfo.id) in testJobHasRightParameters()
76 assertTrue(jobInfo.isPersisted) in testJobHasRightParameters()
77 assertEquals(TimeUnit.DAYS.toMillis(7), jobInfo.minLatencyMillis) in testJobHasRightParameters()
/frameworks/base/services/core/java/com/android/server/display/
DBrightnessIdleJob.java46 JobInfo jobInfo = in scheduleJob() local
52 if (pending != null && !pending.equals(jobInfo)) { in scheduleJob()
58 jobScheduler.schedule(jobInfo); in scheduleJob()
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
DJobStatusTest.java258 final JobInfo jobInfo = in testWouldBeReadyWithConstraint_RequestedCharging() local
262 final JobStatus job = createJobStatus(jobInfo); in testWouldBeReadyWithConstraint_RequestedCharging()
279 final JobInfo jobInfo = in testWouldBeReadyWithConstraint_RequestedDeviceIdle() local
283 final JobStatus job = createJobStatus(jobInfo); in testWouldBeReadyWithConstraint_RequestedDeviceIdle()
300 final JobInfo jobInfo = in testWouldBeReadyWithConstraint_RequestedBatteryNotLow() local
304 final JobStatus job = createJobStatus(jobInfo); in testWouldBeReadyWithConstraint_RequestedBatteryNotLow()
321 final JobInfo jobInfo = in testWouldBeReadyWithConstraint_RequestedStorageNotLow() local
325 final JobStatus job = createJobStatus(jobInfo); in testWouldBeReadyWithConstraint_RequestedStorageNotLow()
342 final JobInfo jobInfo = in testWouldBeReadyWithConstraint_RequestedTimingDelay() local
346 final JobStatus job = createJobStatus(jobInfo); in testWouldBeReadyWithConstraint_RequestedTimingDelay()
[all …]
DStateControllerTest.java136 JobInfo jobInfo = new JobInfo.Builder(jobId, in createJobStatus() local
141 jobInfo, CALLING_UID, SOURCE_PACKAGE, SOURCE_USER_ID, testTag); in createJobStatus()
DTimeControllerTest.java138 JobInfo jobInfo = job.build(); in createJobStatus() local
140 jobInfo, 1000, SOURCE_PACKAGE, SOURCE_USER_ID, testTag); in createJobStatus()
DQuotaControllerTest.java366 JobInfo jobInfo = new JobInfo.Builder(jobId, in createJobStatus() local
369 return createJobStatus(testTag, SOURCE_PACKAGE, CALLING_UID, jobInfo); in createJobStatus()
373 JobInfo jobInfo = new JobInfo.Builder(jobId, in createExpeditedJobStatus() local
377 return createJobStatus(testTag, SOURCE_PACKAGE, CALLING_UID, jobInfo); in createExpeditedJobStatus()
381 JobInfo jobInfo) { in createJobStatus() argument
383 jobInfo, callingUid, packageName, SOURCE_USER_ID, testTag); in createJobStatus()
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
DNekoService.java166 final JobInfo jobInfo = new JobInfo.Builder(JOB_ID, in registerJob() local
171 Log.v(TAG, "A cat will visit in " + interval + "ms: " + String.valueOf(jobInfo)); in registerJob()
172 jss.schedule(jobInfo); in registerJob()
179 .setContentText(String.valueOf(jobInfo)) in registerJob()
/frameworks/base/core/java/android/printservice/
DPrintJob.java55 PrintJob(@NonNull Context context, @NonNull PrintJobInfo jobInfo, in PrintJob() argument
58 mCachedInfo = jobInfo; in PrintJob()
61 jobInfo.getDocumentInfo()); in PrintJob()
/frameworks/base/tests/JobSchedulerPerfTests/src/com/android/frameworks/perftests/job/
DJobStorePerfTests.java149 JobInfo jobInfo = new JobInfo.Builder(jobId, in createJobStatus() local
154 jobInfo, CALLING_UID, SOURCE_PACKAGE, SOURCE_USER_ID, testTag); in createJobStatus()
/frameworks/base/services/tests/servicestests/src/com/android/server/job/
DJobSetTest.java77 final JobInfo jobInfo = new JobInfo.Builder(jobId, mComponent) in getJobStatusWithCallinUid() local
81 return JobStatus.createFromJobInfo(jobInfo, callingUid, mContext.getPackageName(), in getJobStatusWithCallinUid()
/frameworks/base/packages/SystemUI/src/com/android/systemui/people/
DPeopleBackupFollowUpJob.java77 JobInfo jobInfo = new JobInfo in scheduleJob() local
82 jobScheduler.schedule(jobInfo); in scheduleJob()
/frameworks/base/apex/jobscheduler/framework/java/android/app/job/
DJobInfo.java1631 JobInfo jobInfo = new JobInfo(this); in build() local
1632 jobInfo.enforceValidity(); in build()
1633 return jobInfo; in build()