/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hal/ |
D | WifiRttControllerAidlImplTest.java | 99 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 …]
|
D | WifiRttControllerHidlImplTest.java | 93 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/ |
D | RttServiceImplTest.java | 235 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/ |
D | WifiRttController.java | 258 public boolean rangeRequest(int cmdId, RangingRequest request) { in rangeRequest() method in WifiRttController 260 () -> mWifiRttController.rangeRequest(cmdId, request)); in rangeRequest()
|
D | IWifiRttController.java | 71 boolean rangeRequest(int cmdId, RangingRequest request); in rangeRequest() method
|
D | WifiRttControllerAidlImpl.java | 154 public boolean rangeRequest(int cmdId, RangingRequest request) { in rangeRequest() method in WifiRttControllerAidlImpl 175 mWifiRttController.rangeRequest(cmdId, rttConfigs); in rangeRequest()
|
D | WifiRttControllerHidlImpl.java | 127 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/ |
D | RttServiceImpl.java | 977 && mWifiRttController.rangeRequest(nextRequest.cmdId, nextRequest.request)) { in startRanging()
|