HomeSort by relevance Sort by last modified time
    Searched refs:IfaceType (Results 1 - 25 of 61) sorted by null

1 2 3

  /hardware/interfaces/wifi/1.0/
IWifiIface.hal 32 getType() generates (WifiStatus status, IfaceType type);
IWifiChipEventCallback.hal 47 oneway onIfaceAdded(IfaceType type, string name);
55 oneway onIfaceRemoved(IfaceType type, string name);
  /hardware/interfaces/wifi/1.1/default/
wifi_mode_controller.cpp 23 using android::hardware::wifi::V1_0::IfaceType;
27 int convertIfaceTypeToFirmwareMode(IfaceType type) {
30 case IfaceType::AP:
33 case IfaceType::P2P:
36 case IfaceType::NAN:
40 case IfaceType::STA:
57 bool WifiModeController::isFirmwareModeChangeNeeded(IfaceType type) {
62 bool WifiModeController::changeFirmwareMode(IfaceType type) {
wifi_mode_controller.h 43 bool isFirmwareModeChangeNeeded(IfaceType type);
45 bool changeFirmwareMode(IfaceType type);
wifi_p2p_iface.cpp 62 std::pair<WifiStatus, IfaceType> WifiP2pIface::getTypeInternal() {
63 return {createWifiStatus(WifiStatusCode::SUCCESS), IfaceType::P2P};
wifi_p2p_iface.h 50 std::pair<WifiStatus, IfaceType> getTypeInternal();
wifi_ap_iface.cpp 81 std::pair<WifiStatus, IfaceType> WifiApIface::getTypeInternal() {
82 return {createWifiStatus(WifiStatusCode::SUCCESS), IfaceType::AP};
wifi_ap_iface.h 54 std::pair<WifiStatus, IfaceType> getTypeInternal();
wifi_chip.cpp 31 using android::hardware::wifi::V1_0::IfaceType;
421 sta_chip_iface_combination_limit_1 = {{IfaceType::STA}, 1};
424 sta_chip_iface_combination_limit_2 = {{IfaceType::P2P, IfaceType::NAN},
427 sta_chip_iface_combination_limit_2 = {{IfaceType::P2P},
436 {IfaceType::AP}, 1};
545 if (!callback->onIfaceAdded(IfaceType::AP, ifname).isOk()) {
575 if (!callback->onIfaceRemoved(IfaceType::AP, ifname).isOk()) {
592 if (!callback->onIfaceAdded(IfaceType::NAN, ifname).isOk()) {
625 if (!callback->onIfaceRemoved(IfaceType::NAN, ifname).isOk())
    [all...]
  /hardware/interfaces/wifi/supplicant/1.0/
ISupplicantNetwork.hal 62 getType() generates (SupplicantStatus status, IfaceType type);
ISupplicant.hal 50 IfaceType type;
158 setConcurrencyPriority(IfaceType type) generates (SupplicantStatus status);
types.hal 72 enum IfaceType : uint32_t {
ISupplicantIface.hal 57 getType() generates (SupplicantStatus status, IfaceType type);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
HalDeviceManagerTest.java 49 import android.hardware.wifi.V1_0.IfaceType;
298 IfaceType.STA, // ifaceTypeToCreate
341 IfaceType.AP, // ifaceTypeToCreate
384 IfaceType.P2P, // ifaceTypeToCreate
427 IfaceType.NAN, // ifaceTypeToCreate
471 IfaceType.AP, // ifaceTypeToCreate
514 IfaceType.AP, // ifaceTypeToCreate
591 IfaceType.STA, // ifaceTypeToCreate
609 IfaceType.P2P, // ifaceTypeToCreate
622 IfaceType.AP, // ifaceTypeToCreat
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
supplicant.cpp 68 IfaceType type, setConcurrencyPriority_cb _hidl_cb)
106 if (iface_info.type == IfaceType::P2P) {
138 IfaceType::P2P, wpa_s->ifname});
141 IfaceType::STA, wpa_s->ifname});
169 SupplicantStatus Supplicant::setConcurrencyPriorityInternal(IfaceType type)
171 if (type == IfaceType::STA) {
174 } else if (type == IfaceType::P2P) {
supplicant.h 58 IfaceType type, setConcurrencyPriority_cb _hidl_cb) override;
70 SupplicantStatus setConcurrencyPriorityInternal(IfaceType type);
  /hardware/interfaces/wifi/1.0/vts/functional/
wifi_hidl_test_utils.cpp 31 using ::android::hardware::wifi::V1_0::IfaceType;
43 IfaceType desired_type, const std::vector<IWifiChip::ChipMode>& modes,
61 IfaceType type,
82 IfaceType type) {
127 if (!configureChipToSupportIfaceTypeInternal(wifi_chip, IfaceType::AP)) {
142 if (!configureChipToSupportIfaceTypeInternal(wifi_chip, IfaceType::NAN)) {
157 if (!configureChipToSupportIfaceTypeInternal(wifi_chip, IfaceType::P2P)) {
172 if (!configureChipToSupportIfaceTypeInternal(wifi_chip, IfaceType::STA)) {
200 IfaceType type,
wifi_ap_iface_hidl_test.cpp 26 using ::android::hardware::wifi::V1_0::IfaceType;
65 EXPECT_EQ(IfaceType::AP, status_and_type.second);
wifi_chip_hidl_test.cpp 29 using ::android::hardware::wifi::V1_0::IfaceType;
81 ChipModeId configureChipForIfaceType(IfaceType type, bool expectSuccess) {
89 configureChipForIfaceType(IfaceType::STA, true);
194 configureChipForIfaceType(IfaceType::STA, true);
204 ChipModeId chip_mode_id = configureChipForIfaceType(IfaceType::STA, true);
214 configureChipForIfaceType(IfaceType::STA, true);
349 configureChipForIfaceType(IfaceType::AP, true);
365 configureChipForIfaceType(IfaceType::AP, true);
397 configureChipForIfaceType(IfaceType::AP, true);
423 configureChipForIfaceType(IfaceType::AP, true)
    [all...]
  /hardware/interfaces/wifi/supplicant/1.0/vts/functional/
supplicant_hidl_test.cpp 31 using ::android::hardware::wifi::supplicant::V1_0::IfaceType;
73 return iface.type == IfaceType::STA;
77 return iface.type == IfaceType::P2P;
178 IfaceType::STA, [](const SupplicantStatus& status) {
182 IfaceType::P2P, [](const SupplicantStatus& status) {
supplicant_hidl_test_utils.cpp 45 using ::android::hardware::wifi::supplicant::V1_0::IfaceType;
61 wifi_chip, ::android::hardware::wifi::V1_0::IfaceType::STA, &mode_id));
69 bool findIfaceOfType(sp<ISupplicant> supplicant, IfaceType desired_type,
177 if (!findIfaceOfType(supplicant, IfaceType::STA, &info)) {
223 if (!findIfaceOfType(supplicant, IfaceType::P2P, &info)) {
  /hardware/interfaces/wifi/1.1/vts/functional/
wifi_chip_hidl_test.cpp 30 using ::android::hardware::wifi::V1_0::IfaceType;
60 wifi_chip_, IfaceType::STA, &mode_id));
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareNativeManager.java 20 import android.hardware.wifi.V1_0.IfaceType;
72 IfaceType.NAN, mInterfaceAvailableForRequestListener, null);
80 IfaceType.NAN, mInterfaceAvailableForRequestListener, null);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/
WifiAwareNativeManagerTest.java 28 import android.hardware.wifi.V1_0.IfaceType;
109 eq(IfaceType.NAN), mAvailListenerCaptor.capture(), any());
140 eq(IfaceType.NAN), mAvailListenerCaptor.capture(), any());
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
HalDeviceManager.java 29 import android.hardware.wifi.V1_0.IfaceType;
75 mInterfaceAvailableForRequestListeners.put(IfaceType.STA, new HashSet<>());
76 mInterfaceAvailableForRequestListeners.put(IfaceType.AP, new HashSet<>());
77 mInterfaceAvailableForRequestListeners.put(IfaceType.P2P, new HashSet<>());
78 mInterfaceAvailableForRequestListeners.put(IfaceType.NAN, new HashSet<>());
201 return (IWifiStaIface) createIface(IfaceType.STA, destroyedListener, looper);
209 return (IWifiApIface) createIface(IfaceType.AP, destroyedListener, looper);
217 return (IWifiP2pIface) createIface(IfaceType.P2P, destroyedListener, looper);
225 return (IWifiNanIface) createIface(IfaceType.NAN, destroyedListener, looper);
299 * @param ifaceType The interface type (IfaceType) to be monitored
    [all...]

Completed in 181 milliseconds

1 2 3