Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:fe
(Results
1 - 11
of
11
) sorted by relevance
/drivers/hdf_core/framework/model/network/wifi/core/module/
H
A
D
wifi_module.c
41
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
D
wifi_feature.c
23
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
D
wifi_hal_p2p_feature.c
26
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
D
wifi_hal_base_feature.c
175
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
D
wifi_hal_ap_feature.c
73
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
D
wifi_hal_sta_feature.c
114
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
D
wifi_hal_p2p_feature.h
64
* @param
fe
Indicates the double pointer to the P2P feature.
72
int32_t InitP2pFeature(struct IWiFiP2p **
fe
);
H
A
D
wifi_hal_ap_feature.h
118
* @param
fe
Indicates the double pointer to the AP feature.
126
int32_t InitApFeature(struct IWiFiAp **
fe
);
H
A
D
wifi_hal_sta_feature.h
130
* @param
fe
Indicates the double pointer to the STA feature.
138
int32_t InitStaFeature(struct IWiFiSta **
fe
);
H
A
D
wifi_hal_base_feature.h
231
* @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
D
wifi_module.h
86
struct WifiFeature *
fe
[HDF_WIFI_FEATURE_NUM]; /**< An array of WLAN features */
member
Completed in 4 milliseconds