Home
last modified time | relevance | path

Searched refs:isNetworkInStateForJobRunLocked (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
DConnectivityControllerTest.java1677 assertFalse(controller.isNetworkInStateForJobRunLocked(expeditedJob)); in testIsNetworkInStateForJobRunLocked_JobStatus()
1678 assertFalse(controller.isNetworkInStateForJobRunLocked(highProcJob)); in testIsNetworkInStateForJobRunLocked_JobStatus()
1679 assertFalse(controller.isNetworkInStateForJobRunLocked(regJob)); in testIsNetworkInStateForJobRunLocked_JobStatus()
1680 assertFalse(controller.isNetworkInStateForJobRunLocked(uiJob)); in testIsNetworkInStateForJobRunLocked_JobStatus()
1687 assertTrue(controller.isNetworkInStateForJobRunLocked(expeditedJob)); in testIsNetworkInStateForJobRunLocked_JobStatus()
1688 assertTrue(controller.isNetworkInStateForJobRunLocked(highProcJob)); in testIsNetworkInStateForJobRunLocked_JobStatus()
1689 assertFalse(controller.isNetworkInStateForJobRunLocked(regJob)); in testIsNetworkInStateForJobRunLocked_JobStatus()
1690 assertTrue(controller.isNetworkInStateForJobRunLocked(uiJob)); in testIsNetworkInStateForJobRunLocked_JobStatus()
1693 assertTrue(controller.isNetworkInStateForJobRunLocked(expeditedJob)); in testIsNetworkInStateForJobRunLocked_JobStatus()
1694 assertTrue(controller.isNetworkInStateForJobRunLocked(highProcJob)); in testIsNetworkInStateForJobRunLocked_JobStatus()
[all …]
/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
DConnectivityController.java1552 public boolean isNetworkInStateForJobRunLocked(@NonNull JobStatus jobStatus) { in isNetworkInStateForJobRunLocked() method in ConnectivityController
1562 return isNetworkInStateForJobRunLocked(jobStatus.network); in isNetworkInStateForJobRunLocked()
1567 boolean isNetworkInStateForJobRunLocked(@NonNull Network network) { in isNetworkInStateForJobRunLocked() method in ConnectivityController
1613 return isNetworkInStateForJobRunLocked(mSystemDefaultNetwork); in isNetworkInStateForJobRunLocked()
1617 if (isNetworkInStateForJobRunLocked(underlyingNetworks.get(i))) { in isNetworkInStateForJobRunLocked()
1929 if (!isNetworkInStateForJobRunLocked(mSystemDefaultNetwork)) {
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/
DJobSchedulerServiceTest.java1888 doReturn(false).when(connectivityController).isNetworkInStateForJobRunLocked(any()); in testConnectivityJobBatching()
1909 doReturn(true).when(connectivityController).isNetworkInStateForJobRunLocked(any()); in testConnectivityJobBatching()
1933 doReturn(false).when(connectivityController).isNetworkInStateForJobRunLocked(any()); in testConnectivityJobBatching()
/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/
DJobSchedulerService.java3677 && !mConnectivityController.isNetworkInStateForJobRunLocked(job);