HomeSort by relevance Sort by last modified time
    Searched refs:selectNetwork (Results 1 - 8 of 8) sorted by null

  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpagui.h 83 virtual void selectNetwork(const QString &sel);
wpagui.cpp 103 SLOT(selectNetwork(const QString&)));
1060 void WpaGui::selectNetwork( const QString &sel )
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiStateMachineTest.java 733 when(mWifiNative.selectNetwork(0)).thenReturn(true);
739 verify(mWifiNative).selectNetwork(0);
747 verify(mWifiNative, never()).selectNetwork(anyInt());
    [all...]
WifiConfigManagerTest.java 391 * Verifies that selectNetwork() disables all network configurations visible to the current user
409 when(mWifiNative.selectNetwork(config.networkId)).thenReturn(true);
411 mWifiConfigManager.selectNetwork(config, false, config.creatorUid);
417 verify(mWifiNative, never()).selectNetwork(anyInt());
427 verify(mWifiNative).selectNetwork(config.networkId);
428 verify(mWifiNative, never()).selectNetwork(intThat(not(config.networkId)));
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiConfigStore.java     [all...]
WifiConfigManager.java 147 * > The new API calls - selectNetwork(), saveNetwork() & forgetNetwork().
683 boolean selectNetwork(WifiConfiguration config, boolean updatePriorities, int uid) {
684 if (sVDBG) localLogNetwork("selectNetwork", config.networkId);
688 loge("selectNetwork " + Integer.toString(config.networkId) + ": Network config is not "
    [all...]
WifiStateMachine.java     [all...]
WifiNative.java 527 public boolean selectNetwork(int netId) {
528 if (DBG) logDbg("selectNetwork nid=" + Integer.toString(netId));
    [all...]

Completed in 860 milliseconds