Home
last modified time | relevance | path

Searched refs:cmdId (Results 1 – 9 of 9) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/rtt/
DRttNativeTest.java135 int cmdId = 55; in testRangeRequest() local
139 mDut.rangeRequest(cmdId, request, true); in testRangeRequest()
142 verify(mockRttController).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testRangeRequest()
183 int cmdId = 66; in testRangeRequestNotPrivilegedNo80211mcSupportMixed() local
190 mDut.rangeRequest(cmdId, request, false); in testRangeRequestNotPrivilegedNo80211mcSupportMixed()
193 verify(mockRttController).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testRangeRequestNotPrivilegedNo80211mcSupportMixed()
228 int cmdId = 55; in testRangeRequestWithLimitedCapabilities() local
243 mDut.rangeRequest(cmdId, request, true); in testRangeRequestWithLimitedCapabilities()
246 verify(mockRttController).rangeRequest(eq(cmdId), mRttConfigCaptor.capture()); in testRangeRequestWithLimitedCapabilities()
283 int cmdId = 55; in testRangeRequestWithLimitedCapabilitiesNoOverlap() local
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/rtt/
DRttNative.java273 public boolean rangeRequest(int cmdId, RangingRequest request, in rangeRequest() argument
277 "rangeRequest: cmdId=" + cmdId + ", # of requests=" + request.mRttPeers.size()); in rangeRequest()
288 return sendRangeRequest14(cmdId, request, isCalledFromPrivilegedContext); in rangeRequest()
290 return sendRangeRequest(cmdId, request, isCalledFromPrivilegedContext); in rangeRequest()
295 private boolean sendRangeRequest(int cmdId, RangingRequest request, in sendRangeRequest() argument
305 mRttService.onRangingResults(cmdId, new ArrayList<>()); in sendRangeRequest()
310 WifiStatus status = mIWifiRttController.rangeRequest(cmdId, rttConfig); in sendRangeRequest()
323 private boolean sendRangeRequest14(int cmdId, RangingRequest request, in sendRangeRequest14() argument
334 mRttService.onRangingResults(cmdId, new ArrayList<>()); in sendRangeRequest14()
339 WifiStatus status = mIWifiRttController14.rangeRequest_1_4(cmdId, rttConfig); in sendRangeRequest14()
[all …]
DRttServiceImpl.java498 public void onRangingResults(int cmdId, List<RangingResult> results) { in onRangingResults() argument
499 if (VDBG) Log.v(TAG, "onRangingResults: cmdId=" + cmdId); in onRangingResults()
501 mRttServiceSynchronized.onRangingResults(cmdId, results); in onRangingResults()
575 mRttNative.rangeCancel(rri.cmdId, macAddresses); in cancelRanging()
635 + rri.cmdId); in cleanUpClientRequests()
832 nextRequest.cmdId = mNextCommandId++; in startRanging()
834 if (mRttNative.rangeRequest(nextRequest.cmdId, nextRequest.request, in startRanging()
1040 private void onRangingResults(int cmdId, List<RangingResult> results) { in onRangingResults() argument
1050 Log.v(TAG, "RttServiceSynchronized.onRangingResults: cmdId=" + cmdId in onRangingResults()
1055 if (topOfQueueRequest.cmdId != cmdId) { in onRangingResults()
[all …]
/frameworks/base/core/java/com/android/ims/internal/uce/options/
DOptionsSipResponse.java46 public void setCmdId(OptionsCmdId cmdId) { in setCmdId() argument
47 this.mCmdId = cmdId; in setCmdId()
DOptionsCmdStatus.java46 public void setCmdId(OptionsCmdId cmdId) { in setCmdId() argument
47 this.mCmdId = cmdId; in setCmdId()
/frameworks/base/core/java/com/android/ims/internal/uce/presence/
DPresCmdStatus.java47 public void setCmdId(PresCmdId cmdId) { in setCmdId() argument
48 this.mCmdId = cmdId; in setCmdId()
DPresSipResponse.java46 public void setCmdId(PresCmdId cmdId) { in setCmdId() argument
47 this.mCmdId = cmdId; in setCmdId()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiVendorHal.java697 public int cmdId; field in WifiVendorHal.CurrentBackgroundScan
704 cmdId = id; in CurrentBackgroundScan()
826 ok(iface.stopBackgroundScan(mScan.cmdId)); in startBgScan()
831 status = iface.startBackgroundScan(scan.cmdId, scan.param); in startBgScan()
856 ok(iface.stopBackgroundScan(mScan.cmdId)); in stopBgScan()
877 status = iface.stopBackgroundScan(mScan.cmdId); in pauseBgScan()
899 status = iface.startBackgroundScan(mScan.cmdId, mScan.param); in restartBgScan()
1437 int cmdId = 0; // We only aspire to support one program at a time in installPacketFilter() local
1446 WifiStatus status = iface.installApfPacketFilter(cmdId, program); in installPacketFilter()
2697 int cmdId, ArrayList<StaScanData> scanDatas) {
[all …]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiVendorHalTest.java2132 mIWifiStaIfaceEventCallback.onBackgroundScanFailure(mWifiVendorHal.mScan.cmdId); in testBgScanFailureCallback()
2147 mIWifiStaIfaceEventCallback.onBackgroundScanFailure(mWifiVendorHal.mScan.cmdId + 1); in testBgScanFailureCallbackWithInvalidCmdId()
2164 mWifiVendorHal.mScan.cmdId, 5, result.first); in testBgScanFullScanResults()
2186 mWifiVendorHal.mScan.cmdId, data.first); in testBgScanScanResults()
2203 int cmdId1 = mWifiVendorHal.mScan.cmdId; in testBgScanReplacement()
2205 assertNotEquals(mWifiVendorHal.mScan.cmdId, cmdId1); in testBgScanReplacement()
2221 int cmdId = mWifiVendorHal.mScan.cmdId; in testBgScanStop() local
2225 verify(mIWifiStaIface).stopBackgroundScan(cmdId); // Should be called just once in testBgScanStop()
2239 int cmdId = mWifiVendorHal.mScan.cmdId; in testBgScanPauseAndRestart() local
2243 verify(mIWifiStaIface).stopBackgroundScan(cmdId); // Should be called just once in testBgScanPauseAndRestart()
[all …]