/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/ |
D | NetworkRequestDialogFragmentTest.java | 171 networkRequestDialogFragment.onMatch(new ArrayList<ScanResult>()); in onMatch_shouldUpdateWifiEntries() 181 networkRequestDialogFragment.onMatch(Arrays.asList(mScanResult)); in onWifiStateChanged_nonEmptyMatchedScanResults_shouldUpdateWifiEntries() 193 networkRequestDialogFragment.onMatch(Arrays.asList(mScanResult)); in onWifiEntriesChanged_nonEmptyMatchedScanResults_shouldUpdateWifiEntries() 266 networkRequestDialogFragment.onMatch(scanResults); in onMatchManyResult_showNeutralButton() 287 networkRequestDialogFragment.onMatch(scanResults); in clickNeutralButton_hideNeutralButton() 317 networkRequestDialogFragment.onMatch(Arrays.asList(mScanResult)); in updateWifiEntries_noMatchSecurityWifi_filteredWifiIsEmpty() 327 networkRequestDialogFragment.onMatch(Arrays.asList(mScanResult)); in updateWifiEntries_matchWpa2Wifi_filteredWifiNotEmpty() 337 networkRequestDialogFragment.onMatch(Arrays.asList(mScanResult)); in updateWifiEntries_matchWpa3Wifi_filteredWifiNotEmpty()
|
D | NetworkRequestDialogActivityTest.java | 175 mActivity.onMatch(mScanResults); in specifiedSsid_onMatch_shouldShowDialogFragment() 196 mActivity.onMatch(mScanResults); in onUserSelectionConnectFailure_shouldShowDialogFragment() 207 mActivity.onMatch(mScanResults); in onClickConnectButton_shouldShowProgressDialog() 219 mActivity.onMatch(mScanResults); in onCancel_shouldCloseAllUI() 249 mActivity.onMatch(mScanResults); in onMatch_dismissDialogsAndDialogIsNull_shouldNotCrash()
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
D | NetworkRequestDialogActivity.java | 200 public void onMatch(List<ScanResult> scanResults) { in onMatch() method in NetworkRequestDialogActivity 219 mDialogFragment.onMatch(scanResults); in onMatch()
|
D | NetworkRequestDialogBaseFragment.java | 91 protected void onMatch(List<ScanResult> scanResults) { in onMatch() method in NetworkRequestDialogBaseFragment
|
D | NetworkRequestDialogFragment.java | 374 public void onMatch(List<ScanResult> scanResults) { in onMatch() method in NetworkRequestDialogFragment
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | WifiNetworkFactoryTest.java | 969 verify(mNetworkRequestMatchCallback).onMatch(matchedScanResultsCaptor.capture()); in testNetworkSpecifierMatchSuccessUsingLiteralSsidMatch() 1010 verify(mNetworkRequestMatchCallback).onMatch(matchedScanResultsCaptor.capture()); in testNetworkSpecifierMatchSuccessUsingLiteralSsidMatchForSaeTransitionScanResult() 1051 verify(mNetworkRequestMatchCallback).onMatch(matchedScanResultsCaptor.capture()); in testNetworkSpecifierMatchSuccessUsingPrefixSsidMatch() 1093 verify(mNetworkRequestMatchCallback).onMatch(matchedScanResultsCaptor.capture()); in testNetworkSpecifierMatchSuccessUsingLiteralBssidMatch() 1135 verify(mNetworkRequestMatchCallback).onMatch(matchedScanResultsCaptor.capture()); in testNetworkSpecifierMatchSuccessUsingOuiPrefixBssidMatch() 1178 verify(mNetworkRequestMatchCallback).onMatch(matchedScanResultsCaptor.capture()); in testNetworkSpecifierMatchSuccessUsingLiteralSsidMatchWithMultipleBssidMatches() 1222 verify(mNetworkRequestMatchCallback, never()).onMatch(any()); in testNetworkSpecifierMatchFailUsingLiteralSsidMatchWhenSsidNotFound() 1260 verify(mNetworkRequestMatchCallback, never()).onMatch(any()); in testNetworkSpecifierMatchFailUsingLiteralSsidMatchWhenKeyMgmtDiffers() 2956 verify(mNetworkRequestMatchCallback).onMatch(matchedScanResultsCaptor.capture()); in testNetworkSpecifierMatchSuccessUsingLiteralSsidAndBssidMatchApprovedNForgot() 3000 verify(mNetworkRequestMatchCallback).onMatch(matchedScanResultsCaptor.capture()); in testNetworkSpecifierMatchSuccessUsingLiteralSsidAndBssidMatchNotApprovedForOpenNetwork() [all …]
|
/packages/modules/Wifi/framework/java/android/net/wifi/ |
D | INetworkRequestMatchCallback.aidl | 34 void onMatch(in List<ScanResult> scanResults); in onMatch() method
|
D | WifiManager.java | 3125 default void onMatch(@NonNull List<ScanResult> scanResults) {} in onMatch() method 3226 public void onMatch(List<ScanResult> scanResults) { in onMatch() method in WifiManager.NetworkRequestMatchCallbackProxy 3233 mCallback.onMatch(scanResults); in onMatch()
|
/packages/modules/Wifi/framework/java/android/net/wifi/aware/ |
D | IWifiAwareDiscoverySessionCallback.aidl | 38 void onMatch(int peerId, in byte[] serviceSpecificInfo, in byte[] matchFilter, in onMatch() method
|
D | WifiAwareManager.java | 1107 public void onMatch(int peerId, byte[] serviceSpecificInfo, byte[] matchFilter, in onMatch() method in WifiAwareManager.WifiAwareDiscoverySessionCallbackProxy
|
/packages/modules/Wifi/service/java/com/android/server/wifi/aware/ |
D | WifiAwareDiscoverySessionState.java | 589 public int onMatch(int requestorInstanceId, byte[] peerMac, byte[] serviceSpecificInfo, in onMatch() method in WifiAwareDiscoverySessionState 602 mCallback.onMatch(peerId, serviceSpecificInfo, matchFilter, peerCipherSuite, scid, in onMatch()
|
D | WifiAwareStateManager.java | 5224 int peerId = data.second.onMatch(requestorinstanceid, peerMac, serviceSpecificInfo, in onMatchLocal()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/aware/ |
D | WifiAwareStateManagerTest.java | 462 inOrder.verify(mockSessionCallback1).onMatch(peerIdCaptor.capture(), isNull(), in testRequestMacAddresses() 472 inOrder.verify(mockSessionCallback2).onMatch(peerIdCaptor.capture(), isNull(), isNull(), in testRequestMacAddresses() 1866 inOrder.verify(mockSessionCallback).onMatch(peerIdCaptor.capture(), eq(peerSsi.getBytes()), in testMatchAndMessages() 2196 inOrder.verify(mockSessionCallback).onMatch(peerIdCaptor.capture(), eq(peerSsi.getBytes()), in testSendMessageToInvalidPeerId() 2265 inOrder.verify(mockSessionCallback).onMatch(peerIdCaptor.capture(), eq(peerSsi.getBytes()), in testSendMessageErrorsImmediateQueueTimeout() 2391 inOrder.verify(mockSessionCallback).onMatch(peerIdCaptor.capture(), eq(peerSsi.getBytes()), in testSendMessageRetransmitSuccess() 2478 inOrder.verify(mockSessionCallback).onMatch(peerIdCaptor.capture(), eq(peerSsi.getBytes()), in testSendMessageRetransmitFail() 2570 inOrder.verify(mockSessionCallback).onMatch(peerIdCaptor.capture(), isNull(), isNull(), in testSendMessageQueueSequence() 2704 inOrder.verify(mockSessionCallback).onMatch(peerIdCaptor1.capture(), isNull(), isNull(), in testSendMessageQueueLimitBlock() 2710 inOrder.verify(mockSessionCallback).onMatch(peerIdCaptor2.capture(), isNull(), isNull(), in testSendMessageQueueLimitBlock() [all …]
|
/packages/apps/Car/Settings/src/com/android/car/settings/wifi/networkrequest/ |
D | NetworkRequestDialogFragment.java | 430 public void onMatch(List<ScanResult> scanResults) { in onMatch() method in NetworkRequestDialogFragment
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/ |
D | NetworkRequestDialogFragment.java | 411 public void onMatch(List<ScanResult> scanResults) { in onMatch() method in NetworkRequestDialogFragment
|
/packages/modules/Wifi/framework/tests/src/android/net/wifi/aware/ |
D | WifiAwareManagerTest.java | 386 sessionProxyCallback.getValue().onMatch(peerHandle.peerId, string1.getBytes(), matchFilter, in testPublishFlow() 546 sessionProxyCallback.getValue().onMatch(peerHandle.peerId, string1.getBytes(), matchFilter, in testSubscribeFlow()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiNetworkFactory.java | 1700 mRegisteredCallbacks.getBroadcastItem(i).onMatch( in sendNetworkRequestMatchCallbacksForActiveRequest()
|
/packages/modules/Wifi/framework/tests/src/android/net/wifi/ |
D | WifiManagerTest.java | 2302 callbackCaptor.getValue().onMatch(new ArrayList<ScanResult>()); in registerNetworkRequestMatchCallbackCallGoesToWifiServiceImpl() 2304 verify(mNetworkRequestMatchCallback).onMatch(anyList()); in registerNetworkRequestMatchCallbackCallGoesToWifiServiceImpl()
|
/packages/modules/Wifi/apex/hiddenapi/ |
D | hiddenapi-max-target-o-low-priority.txt | 86 Landroid/net/wifi/aware/IWifiAwareDiscoverySessionCallback$Stub$Proxy;->onMatch(I[B[B)V 107 Landroid/net/wifi/aware/IWifiAwareDiscoverySessionCallback;->onMatch(I[B[B)V 295 Landroid/net/wifi/aware/WifiAwareManager$WifiAwareDiscoverySessionCallbackProxy;->onMatch(I[B[B)V
|
/packages/modules/Wifi/framework/api/ |
D | system-current.txt | 977 method public default void onMatch(@NonNull java.util.List<android.net.wifi.ScanResult>);
|