Home
last modified time | relevance | path

Searched refs:endDataPath (Results 1 – 10 of 10) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/aware/
DWifiAwareDataPathStateManager.java321 mMgr.endDataPath(ndpId); in onDataPathInitiateSuccess()
329 mMgr.endDataPath(ndpId); in onDataPathInitiateSuccess()
535 mMgr.endDataPath(ndpId); in onRespondToDataPathRequest()
550 mMgr.endDataPath(ndpId); in onRespondToDataPathRequest()
596 mMgr.endDataPath(ndpId); in onDataPathConfirm()
615 mMgr.endDataPath(ndpId); in onDataPathConfirm()
635 mMgr.endDataPath(ndpId); in onDataPathConfirm()
769 mMgr.endDataPath(ndpId); in isAddressValidationExpired()
894 mMgr.endDataPath(ndpId); in handleDataPathTimeout()
1110 mMgr.endDataPath(ndpId); in releaseNetworkFor()
[all …]
DWifiAwareNativeApi.java675 public boolean endDataPath(short transactionId, int ndpId) { in endDataPath() method in WifiAwareNativeApi
686 return iface.endDataPath(transactionId, ndpId); in endDataPath()
DWifiAwareStateManager.java1579 public void endDataPath(int ndpId) { in endDataPath() method in WifiAwareStateManager
4384 return mWifiAwareNativeApi.endDataPath(transactionId, ndpId); in endDataPathLocal()
/packages/modules/Wifi/service/java/com/android/server/wifi/hal/
DIWifiNanIface.java223 boolean endDataPath(short transactionId, int ndpId); in endDataPath() method
DWifiNanIface.java480 public boolean endDataPath(short transactionId, int ndpId) { in endDataPath() method in WifiNanIface
482 () -> mWifiNanIface.endDataPath(transactionId, ndpId)); in endDataPath()
DWifiNanIfaceAidlImpl.java437 public boolean endDataPath(short transactionId, int ndpId) { in endDataPath() method in WifiNanIfaceAidlImpl
DWifiNanIfaceHidlImpl.java235 public boolean endDataPath(short transactionId, int ndpId) { in endDataPath() method in WifiNanIfaceHidlImpl
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/aware/
DTestUtils.java123 public boolean endDataPath(short transactionId, int ndpId) { in endDataPath() method in TestUtils.MonitoredWifiAwareNativeApi
DWifiAwareDataPathStateManagerTest.java626 inOrder.verify(mMockNative).endDataPath(transactionId.capture(), eq(ndpId + i)); in testMultipleNdpsOnSingleNdi()
785 inOrder.verify(mMockNative).endDataPath(transactionId.capture(), eq(ndpId)); in testMultipleIdenticalRequests()
1830 inOrder.verify(mMockNative).endDataPath(transactionId.capture(), eq(ndpId)); in testDataPathInitiatorUtilityMore()
1858 inOrder.verify(mMockNative).endDataPath(transactionId.capture(), eq(ndpId)); in testDataPathInitiatorUtilityMore()
1878 inOrder.verify(mMockNative).endDataPath(transactionId.capture(), eq(ndpId)); in testDataPathInitiatorUtilityMore()
1985 inOrder.verify(mMockNative).endDataPath(transactionId.capture(), eq(ndpId)); in testDataPathResponderUtility()
2005 inOrder.verify(mMockNative).endDataPath(transactionId.capture(), eq(ndpId)); in testDataPathResponderUtility()
2489 inOrder.verify(mMockNative).endDataPath(transactionId.capture(), eq(ndpId)); in testDataPathAcceptsAnyResponderWithMultipleInitiator()
2520 inOrder.verify(mMockNative).endDataPath(transactionId.capture(), eq(successNdpId)); in testDataPathAcceptsAnyResponderWithMultipleInitiator()
2735 inOrder.verify(mMockNative).endDataPath(anyShort(), eq(ndpId)); in testResponseFailure()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hal/
DWifiNanIfaceAidlImplTest.java500 assertTrue(mDut.endDataPath(tid, ndpId)); in testEndDataPath()