Searched refs:peerDiscoveryMac (Results 1 – 2 of 2) sorted by relevance
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/aware/ |
D | WifiAwareDataPathStateManagerTest.java | 293 final byte[] peerDiscoveryMac = HexEncoding.decode("000102030405".toCharArray(), false); in testDataPathWithPortInfoOnPublisher() 300 peerDiscoveryMac, inOrder, inOrderM, false); in testDataPathWithPortInfoOnPublisher() 315 mDut.onDataPathRequestNotification(pubSubId, peerDiscoveryMac, ndpId, null); in testDataPathWithPortInfoOnPublisher() 332 final byte[] peerDiscoveryMac = HexEncoding.decode("000102030405".toCharArray(), false); in testDataPathWithPortInfoInvalidPort() 339 peerDiscoveryMac, inOrder, inOrderM, false); in testDataPathWithPortInfoInvalidPort() 366 final byte[] peerDiscoveryMac = HexEncoding.decode("000102030405".toCharArray(), false); in testDataPathWithPortInfoButNoSecurityOnSubscriber() 373 peerDiscoveryMac, inOrder, inOrderM, false); in testDataPathWithPortInfoButNoSecurityOnSubscriber() 401 final byte[] peerDiscoveryMac = HexEncoding.decode("000102030405".toCharArray(), false); in testDestroyNdiDuringNdpSetupResponder() 411 peerDiscoveryMac, inOrder, inOrderM, true); in testDestroyNdiDuringNdpSetupResponder() 435 mDut.onDataPathRequestNotification(pubSubId, peerDiscoveryMac, ndpId, null); in testDestroyNdiDuringNdpSetupResponder() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/aware/ |
D | WifiAwareDataPathStateManager.java | 329 ndpInfo.peerDiscoveryMac = nnri.specifiedPeerDiscoveryMac; in onDataPathInitiateSuccess() 484 ndpInfo.peerDiscoveryMac = mac; in onDataPathRequest() 816 if (!Arrays.equals(peerMac, ndpInfo.peerDiscoveryMac)) { in onDataPathSchedUpdate() 819 + MacAddress.fromBytes(ndpInfo.peerDiscoveryMac).toString()); in onDataPathSchedUpdate() 1257 public byte[] peerDiscoveryMac = null; field in WifiAwareDataPathStateManager.NdpInfo 1278 peerDiscoveryMac == null ? "" in toString() 1279 : String.valueOf(HexEncoding.encode(peerDiscoveryMac))) in toString() 1570 CanonicalConnectionInfo(byte[] peerDiscoveryMac, byte[] pmk, int sessionId, in CanonicalConnectionInfo() argument 1572 this.peerDiscoveryMac = peerDiscoveryMac; in CanonicalConnectionInfo() 1578 public final byte[] peerDiscoveryMac; field in WifiAwareDataPathStateManager.CanonicalConnectionInfo [all …]
|