/frameworks/base/wifi/tests/src/android/net/wifi/ |
D | WifiManagerTest.java | 141 when(mWifiService.startSoftAp(eq(mApConfig))).thenReturn(true); in testStartSoftApCallsServiceWithWifiConfig() 142 assertTrue(mWifiManager.startSoftAp(mApConfig)); in testStartSoftApCallsServiceWithWifiConfig() 144 when(mWifiService.startSoftAp(eq(mApConfig))).thenReturn(false); in testStartSoftApCallsServiceWithWifiConfig() 145 assertFalse(mWifiManager.startSoftAp(mApConfig)); in testStartSoftApCallsServiceWithWifiConfig() 154 when(mWifiService.startSoftAp(eq(null))).thenReturn(true); in testStartSoftApCallsServiceWithNullConfig() 155 assertTrue(mWifiManager.startSoftAp(null)); in testStartSoftApCallsServiceWithNullConfig() 157 when(mWifiService.startSoftAp(eq(null))).thenReturn(false); in testStartSoftApCallsServiceWithNullConfig() 158 assertFalse(mWifiManager.startSoftAp(null)); in testStartSoftApCallsServiceWithNullConfig()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | SoftApManager.java | 254 private int startSoftAp(WifiConfiguration config) { in startSoftAp() method in SoftApManager 295 if (!mWifiNative.startSoftAp(mApInterfaceName, localConfig, mSoftApListener)) { in startSoftAp() 388 int result = startSoftAp((WifiConfiguration) message.obj); in processMessage()
|
D | ActiveModeWarden.java | 179 startSoftAp(wifiConfig); in enterSoftAPMode() 592 private void startSoftAp(SoftApModeConfiguration softapConfig) { in startSoftAp() method in ActiveModeWarden
|
D | WifiNative.java | 1577 public boolean startSoftAp( in startSoftAp() method in WifiNative
|
D | WifiServiceImpl.java | 1079 public boolean startSoftAp(WifiConfiguration wifiConfig) { in startSoftAp() method in WifiServiceImpl
|
/frameworks/base/wifi/java/android/net/wifi/ |
D | IWifiManager.aidl | 138 boolean startSoftAp(in WifiConfiguration wifiConfig); in startSoftAp() method
|
D | WifiManager.java | 2604 public boolean startSoftAp(@Nullable WifiConfiguration wifiConfig) { 2606 return mService.startSoftAp(wifiConfig);
|
/frameworks/base/packages/Tethering/tests/unit/src/com/android/networkstack/tethering/ |
D | TetheringTest.java | 986 when(mWifiManager.startSoftAp(any(WifiConfiguration.class))).thenReturn(true); in failingWifiTetheringLegacyApBroadcast() 991 verify(mWifiManager, times(1)).startSoftAp(null); in failingWifiTetheringLegacyApBroadcast() 1014 when(mWifiManager.startSoftAp(any(WifiConfiguration.class))).thenReturn(true); in workingWifiTetheringEnrichedApBroadcast() 1019 verify(mWifiManager, times(1)).startSoftAp(null); in workingWifiTetheringEnrichedApBroadcast() 1090 when(mWifiManager.startSoftAp(any(WifiConfiguration.class))).thenReturn(true); in failureEnablingIpForwarding() 1096 verify(mWifiManager, times(1)).startSoftAp(null); in failureEnablingIpForwarding() 1383 when(mWifiManager.startSoftAp(any(WifiConfiguration.class))).thenReturn(true); in testRegisterTetheringEventCallback()
|
/frameworks/base/wifi/java/com/android/server/wifi/ |
D | BaseWifiService.java | 277 public boolean startSoftAp(WifiConfiguration wifiConfig) { in startSoftAp() method in BaseWifiService
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | SoftApManagerTest.java | 133 when(mWifiNative.startSoftAp(eq(TEST_INTERFACE_NAME), any(), any())).thenReturn(true); in setUp() 559 when(mWifiNative.startSoftAp(eq(TEST_INTERFACE_NAME), any(), any())).thenReturn(false); in startSoftApApInterfaceFailedToStart() 1149 order.verify(mWifiNative).startSoftAp(eq(TEST_INTERFACE_NAME), in startSoftApAndVerifyEnabled()
|
D | WifiServiceImplTest.java | 1169 boolean result = mWifiServiceImpl.startSoftAp(null); in testStartSoftApWithPermissionsAndNullConfig() 1181 boolean result = mWifiServiceImpl.startSoftAp(mApConfig); in testStartSoftApWithPermissionsAndInvalidConfig() 1192 boolean result = mWifiServiceImpl.startSoftAp(config); in testStartSoftApWithPermissionsAndValidConfig() 1207 boolean result = mWifiServiceImpl.startSoftAp(config); in testStartSoftApWhenInCryptDebounce() 1222 mWifiServiceImpl.startSoftAp(null); in testStartSoftApWithoutPermissionThrowsException() 1624 assertTrue(mWifiServiceImpl.startSoftAp(config)); in testTetheringDoesNotStartWhenAlreadyTetheringActive() 1633 assertFalse(mWifiServiceImpl.startSoftAp(createValidSoftApConfiguration())); in testTetheringDoesNotStartWhenAlreadyTetheringActive() 4217 boolean tetheringResult = mWifiServiceImpl.startSoftAp(null); in startLohsAndTethering()
|
D | WifiNativeInterfaceManagementTest.java | 792 assertTrue(mWifiNative.startSoftAp(IFACE_NAME_0, new WifiConfiguration(), in testStartSoftApAndHostapdDied()
|
/frameworks/base/packages/Tethering/src/com/android/networkstack/tethering/ |
D | Tethering.java | 638 if ((enable && mgr.startSoftAp(null /* use existing wifi config */)) in setWifiTethering()
|
/frameworks/base/api/ |
D | system-current.txt | 5392 …id.net.NetworkStack.PERMISSION_MAINLINE_NETWORK_STACK}) public boolean startSoftAp(@Nullable andro…
|
/frameworks/base/non-updatable-api/ |
D | system-current.txt | 5298 …id.net.NetworkStack.PERMISSION_MAINLINE_NETWORK_STACK}) public boolean startSoftAp(@Nullable andro…
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 46417 Landroid/net/wifi/IWifiManager$Stub$Proxy;->startSoftAp(Landroid/net/wifi/WifiConfiguration;)Z 46544 Landroid/net/wifi/IWifiManager;->startSoftAp(Landroid/net/wifi/WifiConfiguration;)Z 47444 Landroid/net/wifi/WifiManager;->startSoftAp(Landroid/net/wifi/WifiConfiguration;)Z
|