Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hal/
DWifiRttControllerAidlImplTest.java99 mDut.rangeRequest(cmdId, request); in testBurstDuration()
100 verify(mIWifiRttControllerMock).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testBurstDuration()
108 mDut.rangeRequest(cmdId, request); in testBurstDuration()
109 verify(mIWifiRttControllerMock).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testBurstDuration()
117 mDut.rangeRequest(cmdId, request); in testBurstDuration()
118 verify(mIWifiRttControllerMock).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testBurstDuration()
137 mDut.rangeRequest(cmdId, request); in testRangeRequest()
140 verify(mIWifiRttControllerMock).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testRangeRequest()
207 mDut.rangeRequest(cmdId, request); in testRangeRequestWithLimitedCapabilities()
210 verify(mIWifiRttControllerMock).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testRangeRequestWithLimitedCapabilities()
[all …]
DWifiRttControllerHidlImplTest.java93 when(mockRttController.rangeRequest(anyInt(), any(ArrayList.class))).thenReturn( in setUp()
118 mDut.rangeRequest(cmdId, request); in testRangeRequest()
121 verify(mockRttController).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testRangeRequest()
186 mDut.rangeRequest(cmdId, request); in testRangeRequestWithLimitedCapabilities()
189 verify(mockRttController).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testRangeRequestWithLimitedCapabilities()
240 mDut.rangeRequest(cmdId, request); in testRangeRequestWithLimitedCapabilitiesNoOverlap()
243 verify(mockRttController).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testRangeRequestWithLimitedCapabilitiesNoOverlap()
388 mDut.rangeRequest(cmdId, request); in testRangingWithInvalidParameterCombination()
389 verify(mockRttController).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testRangingWithInvalidParameterCombination()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/rtt/
DRttServiceImplTest.java235 when(mockRttControllerHal.rangeRequest(anyInt(), any(RangingRequest.class))).thenReturn( in setUp()
339 verify(mockRttControllerHal).rangeRequest(mIntCaptor.capture(), eq(requests[i])); in testRangingFlow()
410 verify(mockRttControllerHal).rangeRequest(mIntCaptor.capture(), mRequestCaptor.capture()); in testRangingFlowUsingAwarePeerHandles()
488 verify(mockRttControllerHal).rangeRequest(mIntCaptor.capture(), mRequestCaptor.capture()); in testRangingOnlyAwareAps()
522 when(mockRttControllerHal.rangeRequest(anyInt(), any(RangingRequest.class))).thenReturn( in testRangingFlowHalFailure()
528 when(mockRttControllerHal.rangeRequest(anyInt(), any(RangingRequest.class))).thenReturn( in testRangingFlowHalFailure()
538 verify(mockRttControllerHal).rangeRequest(mIntCaptor.capture(), eq(requests[i])); in testRangingFlowHalFailure()
590 verify(mockRttControllerHal).rangeRequest(mIntCaptor.capture(), eq(request)); in testRangingRequestWithoutRuntimePermission()
642 verify(mockRttControllerHal).rangeRequest(mIntCaptor.capture(), eq(requests[i])); in testBinderDeathOfRangingApp()
713 verify(mockRttControllerHal).rangeRequest(mIntCaptor.capture(), eq(request)); in testBinderDeathWithWorkSource()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/hal/
DWifiRttController.java258 public boolean rangeRequest(int cmdId, RangingRequest request) { in rangeRequest() method in WifiRttController
260 () -> mWifiRttController.rangeRequest(cmdId, request)); in rangeRequest()
DIWifiRttController.java71 boolean rangeRequest(int cmdId, RangingRequest request); in rangeRequest() method
DWifiRttControllerAidlImpl.java154 public boolean rangeRequest(int cmdId, RangingRequest request) { in rangeRequest() method in WifiRttControllerAidlImpl
175 mWifiRttController.rangeRequest(cmdId, rttConfigs); in rangeRequest()
DWifiRttControllerHidlImpl.java127 public boolean rangeRequest(int cmdId, RangingRequest request) { in rangeRequest() method in WifiRttControllerHidlImpl
217 WifiStatus status = mWifiRttController.rangeRequest(cmdId, rttConfig); in sendRangeRequest()
/packages/modules/Wifi/service/java/com/android/server/wifi/rtt/
DRttServiceImpl.java977 && mWifiRttController.rangeRequest(nextRequest.cmdId, nextRequest.request)) { in startRanging()