Home
last modified time | relevance | path

Searched refs:STA (Results 1 – 13 of 13) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/
DREADME.txt31 the WifiController which tracks high level states as to whether STA or AP mode
42 ActiveModeWarden: Tracks the various states on STA and AP connectivity and handles bring up and shu…
DSupplicantStaIfaceHalHidlImpl.java494 if (ifaceInfo.type == IfaceType.STA in getIfaceV1_0()
527 ifaceInfo.type = IfaceType.STA; in addIfaceV1_1()
592 ifaceInfo.type = IfaceType.STA; in removeIfaceV1_1()
2683 return setConcurrencyPriority(IfaceType.STA); in setConcurrencyPriority()
3289 case SupplicantStaIfaceHal.DppNetRole.STA: in frameworkToHidlDppNetRole()
3290 return DppNetRole.STA; in frameworkToHidlDppNetRole()
DSupplicantStaIfaceHalAidlImpl.java347 ifaceInfo.type = IfaceType.STA; in teardownIface()
2386 return setConcurrencyPriority(IfaceType.STA); in setConcurrencyPriority()
2826 case SupplicantStaIfaceHal.DppNetRole.STA: in frameworkToAidlDppNetRole()
2827 return DppNetRole.STA; in frameworkToAidlDppNetRole()
DDppManager.java385 : DppNetRole.STA, in startDppAsConfiguratorInitiator()
DSupplicantStaIfaceHal.java82 public static final int STA = 0; field in SupplicantStaIfaceHal.DppNetRole
/packages/modules/Wifi/service/proto/src/
Dmetrics.proto950 // Max Tx link speed (in Mbps) supported by current network (STA and AP)
953 // Max Rx link speed (in Mbps) supported by current network (STA and AP)
964 // STA created for scans only.
967 // secondary STA used for make before break.
970 // secondary STA created for local connection (no internet connectivity).
973 // primary STA.
976 // Long lived secondary STA used for restricted use cases
1045 // The reason code if AP disconnects STA during the connecting state.
1499 // Designates whether a NETWORK_DISCONNECT_EVENT was by the STA or AP
2241 // Target STA does not respond to request
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/hal/
DWifiChipHidlImpl.java1592 put(IfaceType.STA, android.hardware.wifi.V1_6.IfaceConcurrencyType.STA);
1649 && newLimitForBridgedApCombo.types.contains(IfaceConcurrencyType.STA)) { in upgradeV1_0ChipModesToV1_6()
1652 newLimitForBridgedApCombo.types.remove((Integer) IfaceConcurrencyType.STA); in upgradeV1_0ChipModesToV1_6()
1718 case IfaceConcurrencyType.STA: in halToFrameworkIfaceConcurrencyType()
1736 case IfaceType.STA: in halToFrameworkIfaceType()
DWifiRttControllerAidlImpl.java561 return RttPeerType.STA; in frameworkToHalRttPeerType()
DWifiChipAidlImpl.java1263 case IfaceConcurrencyType.STA: in halToFrameworkIfaceConcurrencyType()
1281 case IfaceType.STA: in halToFrameworkIfaceType()
DWifiRttControllerHidlImpl.java829 return RttPeerType.STA; in halRttPeerTypeFromResponderType()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaIfaceHalAidlImplTest.java248 mIfaceInfoList[0] = createIfaceInfo(IfaceType.STA, WLAN0_IFACE_NAME); in setUp()
249 mIfaceInfoList[1] = createIfaceInfo(IfaceType.STA, WLAN1_IFACE_NAME); in setUp()
1706 verify(mISupplicantMock).setConcurrencyPriority(eq(IfaceType.STA)); in testConcurrencyPriority()
DSupplicantStaIfaceHalHidlImplTest.java278 mStaIface0 = createIfaceInfo(IfaceType.STA, WLAN0_IFACE_NAME); in setUp()
279 mStaIface1 = createIfaceInfo(IfaceType.STA, WLAN1_IFACE_NAME); in setUp()
2024 verify(mISupplicantMock).setConcurrencyPriority(eq(IfaceType.STA)); in testConcurrencyPriority()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHalHidlImplTest.java225 mStaIface = createIfaceInfo(IfaceType.STA, "wlan0"); in setUp()