Home
last modified time | relevance | path

Searched refs:fe (Results 1 - 11 of 11) sorted by relevance

/drivers/hdf_core/framework/model/network/wifi/core/module/
H A Dwifi_module.c41 module->feList.fe[HDF_WIFI_FEATURE_AP] = GetWifiApFeature(); in InitFeatures()
42 module->feList.fe[HDF_WIFI_FEATURE_STA] = GetWifiStaFeature(); in InitFeatures()
43 module->feList.fe[HDF_WIFI_FEATURE_P2P] = GetWifiP2pFeature(); in InitFeatures()
46 if ((module->moduleConfig.hslConfig->featureMap & (1 << i)) && module->feList.fe[i] != NULL) { in InitFeatures()
47 module->feList.fe[i]->init(module->feList.fe[i]); in InitFeatures()
64 if ((module->feList.fe[i] != NULL) && (module->feList.fe[i]->deInit != NULL)) { in DeInitFeatures()
65 module->feList.fe[i]->deInit(module->feList.fe[ in DeInitFeatures()
[all...]
H A Dwifi_feature.c23 module->feList.fe[featureType] = (struct WifiFeature *)feature; in AddFeature()
41 featureData = module->feList.fe[featureType]; in DelFeature()
43 featureData->deInit(module->feList.fe[featureType]); in DelFeature()
/drivers/peripheral/wlan/hal/src/
H A Dwifi_hal_p2p_feature.c26 int32_t InitP2pFeature(struct IWiFiP2p **fe) in InitP2pFeature() argument
28 if (fe == NULL || *fe == NULL) { in InitP2pFeature()
32 if (InitBaseFeature((struct IWiFiBaseFeature **)fe) != HDF_SUCCESS) { in InitP2pFeature()
H A Dwifi_hal_base_feature.c175 int32_t InitBaseFeature(struct IWiFiBaseFeature **fe) in InitBaseFeature() argument
177 if (fe == NULL || *fe == NULL) { in InitBaseFeature()
181 (*fe)->getNetworkIfaceName = GetNetworkIfaceName; in InitBaseFeature()
182 (*fe)->getFeatureType = GetFeatureType; in InitBaseFeature()
183 (*fe)->setMacAddress = SetMacAddress; in InitBaseFeature()
184 (*fe)->getDeviceMacAddress = GetDeviceMacAddress; in InitBaseFeature()
185 (*fe)->getValidFreqsWithBand = GetValidFreqsWithBand; in InitBaseFeature()
186 (*fe)->setTxPower = HalSetTxPower; in InitBaseFeature()
187 (*fe) in InitBaseFeature()
[all...]
H A Dwifi_hal_ap_feature.c73 int32_t InitApFeature(struct IWiFiAp **fe) in InitApFeature() argument
75 if (fe == NULL || *fe == NULL) { in InitApFeature()
79 if (InitBaseFeature((struct IWiFiBaseFeature **)fe) != HDF_SUCCESS) { in InitApFeature()
83 (*fe)->getAssociatedStas = HalGetAssociatedStas; in InitApFeature()
84 (*fe)->setCountryCode = HalSetCountryCode; in InitApFeature()
85 (*fe)->getApBandwidth = HalGetApBandwidth; in InitApFeature()
H A Dwifi_hal_sta_feature.c114 int32_t InitStaFeature(struct IWiFiSta **fe) in InitStaFeature() argument
116 if (fe == NULL || *fe == NULL) { in InitStaFeature()
120 if (InitBaseFeature((struct IWiFiBaseFeature **)fe) != HDF_SUCCESS) { in InitStaFeature()
124 (*fe)->setScanningMacAddress = SetScanningMacAddress; in InitStaFeature()
125 (*fe)->startScan = StartScan; in InitStaFeature()
126 (*fe)->startPnoScan = StartPnoScan; in InitStaFeature()
127 (*fe)->stopPnoScan = StopPnoScan; in InitStaFeature()
128 (*fe)->getSignalPollInfo = GetSignalPollInfo; in InitStaFeature()
/drivers/peripheral/wlan/interfaces/include/
H A Dwifi_hal_p2p_feature.h64 * @param fe Indicates the double pointer to the P2P feature.
72 int32_t InitP2pFeature(struct IWiFiP2p **fe);
H A Dwifi_hal_ap_feature.h118 * @param fe Indicates the double pointer to the AP feature.
126 int32_t InitApFeature(struct IWiFiAp **fe);
H A Dwifi_hal_sta_feature.h130 * @param fe Indicates the double pointer to the STA feature.
138 int32_t InitStaFeature(struct IWiFiSta **fe);
H A Dwifi_hal_base_feature.h231 * @param fe Indicates the double pointer to the basic feature.
239 int32_t InitBaseFeature(struct IWiFiBaseFeature **fe);
/drivers/hdf_core/framework/include/wifi/
H A Dwifi_module.h86 struct WifiFeature *fe[HDF_WIFI_FEATURE_NUM]; /**< An array of WLAN features */ member

Completed in 3 milliseconds