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:ifnames
(Results
1 - 3
of
3
) sorted by relevance
/drivers/peripheral/wlan/test/unittest/chip/
H
A
D
wifi_chip_test.cpp
115
std::vector<std::string>
ifnames
;
in HWTEST_F()
local
116
wifiChip->GetApServiceIfNames(
ifnames
);
in HWTEST_F()
120
EXPECT_TRUE(wifiChip->GetApServiceIfNames(
ifnames
) == HDF_FAILURE);
in HWTEST_F()
143
std::vector<std::string>
ifnames
;
in HWTEST_F()
local
144
wifiChip->GetP2pServiceIfNames(
ifnames
);
in HWTEST_F()
148
EXPECT_TRUE(wifiChip->GetP2pServiceIfNames(
ifnames
) == HDF_FAILURE);
in HWTEST_F()
172
std::vector<std::string>
ifnames
;
in HWTEST_F()
local
173
wifiChip->GetStaServiceIfNames(
ifnames
);
in HWTEST_F()
177
EXPECT_TRUE(wifiChip->GetStaServiceIfNames(
ifnames
) == HDF_FAILURE);
in HWTEST_F()
/drivers/peripheral/wlan/chip/hdi_service/
H
A
D
wifi_chip.h
56
int32_t GetApServiceIfNames(std::vector<std::string>&
ifnames
) override;
60
int32_t GetP2pServiceIfNames(std::vector<std::string>&
ifnames
) override;
64
int32_t GetStaServiceIfNames(std::vector<std::string>&
ifnames
) override;
H
A
D
wifi_chip.cpp
520
int32_t WifiChip::GetApServiceIfNames(std::vector<std::string>&
ifnames
)
in GetApServiceIfNames()
argument
525
ifnames
= GetApNames(apIfaces_);
in GetApServiceIfNames()
566
int32_t WifiChip::GetP2pServiceIfNames(std::vector<std::string>&
ifnames
)
in GetP2pServiceIfNames()
argument
571
ifnames
= GetP2pNames(p2pIfaces_);
in GetP2pServiceIfNames()
621
int32_t WifiChip::GetStaServiceIfNames(std::vector<std::string>&
ifnames
)
in GetStaServiceIfNames()
argument
626
ifnames
= GetStaNames(staIfaces_);
in GetStaServiceIfNames()
Completed in 4 milliseconds