Home
last modified time | relevance | path

Searched refs:getRequestorWsPriority (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/
DWorkSourceHelperTest.java75 assertEquals(wsHelper.getRequestorWsPriority(), WorkSourceHelper.PRIORITY_INTERNAL); in testGetRequestorWsPriority()
82 assertEquals(WorkSourceHelper.PRIORITY_BG, wsHelper.getRequestorWsPriority()); in testGetRequestorWsPriority()
87 assertEquals(WorkSourceHelper.PRIORITY_FG_SERVICE, wsHelper.getRequestorWsPriority()); in testGetRequestorWsPriority()
92 assertEquals(WorkSourceHelper.PRIORITY_FG_APP, wsHelper.getRequestorWsPriority()); in testGetRequestorWsPriority()
100 assertEquals(WorkSourceHelper.PRIORITY_FG_APP, wsHelper.getRequestorWsPriority()); in testGetRequestorWsPriority()
106 assertEquals(WorkSourceHelper.PRIORITY_SYSTEM, wsHelper.getRequestorWsPriority()); in testGetRequestorWsPriority()
110 assertEquals(WorkSourceHelper.PRIORITY_PRIVILEGED, wsHelper.getRequestorWsPriority()); in testGetRequestorWsPriority()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DHalDeviceManagerTest.java186 when(mWorkSourceHelper0.getRequestorWsPriority()) in before()
188 when(mWorkSourceHelper1.getRequestorWsPriority()) in before()
190 when(mWorkSourceHelper2.getRequestorWsPriority()) in before()
738 when(mWorkSourceHelper1.getRequestorWsPriority()) in testReplaceRequestorWs()
749 when(mWorkSourceHelper2.getRequestorWsPriority()) in testReplaceRequestorWs()
754 when(mWorkSourceHelper1.getRequestorWsPriority()) in testReplaceRequestorWs()
806 when(mWorkSourceHelper1.getRequestorWsPriority()) in testInterfaceCreationFlowIfCanDeleteWithUserApproval()
882 when(mWorkSourceHelper2.getRequestorWsPriority()) in testSecondaryInternetStaTreatedAsOpportunistic()
963 when(mWorkSourceHelper2.getRequestorWsPriority()) in testDisconnectedP2pTreatedAsOpportunisticAfterTimeout()
980 when(mWorkSourceHelper2.getRequestorWsPriority()) in testDisconnectedP2pTreatedAsOpportunisticAfterTimeout()
[all …]
DInterfaceConflictManagerTest.java126 when(mWsHelper.getRequestorWsPriority()) in setup()
128 when(mExistingWsHelper.getRequestorWsPriority()) in setup()
711 when(mExistingWsHelper.getRequestorWsPriority()) in testCanDeleteWithUserApproval()
718 when(mExistingWsHelper.getRequestorWsPriority()) in testCanDeleteWithUserApproval()
DWifiServiceImplTest.java3990 when(mWorkSourceHelper.getRequestorWsPriority()) in testCustomLohs_ExclusiveBeforeShared()
13293 when(mWorkSourceHelper.getRequestorWsPriority()) in testCustomLohs_NotExclusive5GConfigButNewRequestorLowerPriority()
13320 when(mWorkSourceHelper.getRequestorWsPriority()) in testCustomLohs_NotExclusive2GConfigSharedEvenIfNewRequestorLowerPriority()
13350 when(mWorkSourceHelper.getRequestorWsPriority()) in testCustomLohs_NotExclusive5GConfigButNewRequestorHigherPriority()
13383 when(mWorkSourceHelper.getRequestorWsPriority()) in testCustomLohs_NotExclusive2GConfigSharedWhenNewRequestorHihgerPriority()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DInterfaceConflictManager.java170 if (newRequestorWsHelper.getRequestorWsPriority() <= WorkSourceHelper.PRIORITY_BG in needsUserApprovalToDelete()
171 || existingRequestorWsHelper.getRequestorWsPriority() in needsUserApprovalToDelete()
DHalDeviceManager.java994 if (iface.requestorWsHelper.getRequestorWsPriority() in creatingIfaceWillDeletePrivilegedIface()
2184 newRequestorWs.getRequestorWsPriority(); in allowedToDelete()
2186 existingRequestorWs.getRequestorWsPriority(); in allowedToDelete()
2405 int newRequestorWsPriority = newRequestorWsHelper.getRequestorWsPriority();
2406 int existingRequestorWsPriority = cacheEntry.requestorWsHelper.getRequestorWsPriority();
DWifiServiceImpl.java2881 .makeWsHelper(request.getWorkSource()).getRequestorWsPriority(); in start()
2883 .makeWsHelper(mCurrentWs).getRequestorWsPriority(); in start()
2933 .getRequestorWsPriority(); in startForFirstRequestLocked()
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DWorkSourceHelper.java90 public @RequestorWsPriority int getRequestorWsPriority() { in getRequestorWsPriority() method in WorkSourceHelper