Searched refs:WifiModule (Results 1 - 7 of 7) sorted by relevance
/drivers/hdf_core/framework/include/wifi/ |
H A D | wifi_module.h | 28 * The {@link WifiModule} object is a core abstraction of the WLAN driver. It contains a module that communicates 108 int32_t (*deInit)(struct WifiModule *module); 122 int32_t (*addFeature)(struct WifiModule *module, uint16_t featureType, struct WifiFeature *feature); 135 int32_t (*delFeature)(struct WifiModule *module, uint16_t featureType); 147 struct WifiModule { struct 196 * @brief Initializes a <b>WifiModule</b> object. 198 * @param module Indicates the pointer to the <b>WifiModule</b> object to initialize. 201 * @return Returns <b>0</b> if the <b>WifiModule</b> object is initialized; returns a negative value otherwise. 206 int16_t InitWifiModule(struct WifiModule *module, const struct HdfConfigWlanModuleConfig *config);
|
H A D | wifi_inc.h | 39 struct WifiModule;
|
H A D | hdf_wifi_product.h | 103 struct WifiModule* HdfWlanGetModule(void);
|
/drivers/hdf_core/framework/test/unittest/model/network/wifi/unittest/module/ |
H A D | hdf_module_test.c | 16 struct WifiModule *g_hdfWifiModule = NULL; 60 g_hdfWifiModule = OsalMemCalloc(sizeof(struct WifiModule)); in WiFiModuleTestSetEnv() 67 HDF_LOGE("%s:Init WifiModule failed!ret=%d", __func__, ret); in WiFiModuleTestSetEnv() 79 struct WifiModule *module = NULL; in WiFiModuleTestCreateModule() 85 module = OsalMemCalloc(sizeof(struct WifiModule)); in WiFiModuleTestCreateModule() 93 HDF_LOGE("%s:Init WifiModule failed!ret=%d", __func__, ret); in WiFiModuleTestCreateModule() 105 struct WifiModule *module = HdfWlanGetModule(); in WiFiModuleTestAddFeature() 119 struct WifiModule *module = HdfWlanGetModule(); in WiFiModuleTestDelFeature()
|
/drivers/hdf_core/framework/model/network/wifi/core/module/ |
H A D | wifi_module.c | 23 int32_t DelFeature(struct WifiModule *module, uint16_t featureType); 24 int32_t AddFeature(struct WifiModule *module, uint16_t featureType, struct WifiFeature *featureData); 26 static int32_t InitFeatures(struct WifiModule *module) in InitFeatures() 54 static int32_t DeInitFeatures(struct WifiModule *module) in DeInitFeatures() 78 int16_t InitWifiModule(struct WifiModule *module, const struct HdfConfigWlanModuleConfig *config) in InitWifiModule()
|
H A D | wifi_feature.c | 17 int32_t AddFeature(struct WifiModule *module, uint16_t featureType, struct WifiFeature *feature) in AddFeature() 33 int32_t DelFeature(struct WifiModule *module, uint16_t featureType) in DelFeature()
|
/drivers/hdf_core/framework/model/network/wifi/platform/src/ |
H A D | hdf_wlan_product.c | 23 struct WifiModule module; /* *< Structure of the WLAN module */
85 struct WifiModule *HdfWlanGetModule(void)
in HdfWlanGetModule()
|
Completed in 3 milliseconds