OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NL80211NestedAttr
(Results
1 - 12
of
12
) sorted by null
/system/connectivity/wificond/net/
nl80211_attribute.cpp
133
// For
NL80211NestedAttr
134
NL80211NestedAttr
::
NL80211NestedAttr
(int id) {
138
NL80211NestedAttr
::
NL80211NestedAttr
(const vector<uint8_t>& data) {
142
void
NL80211NestedAttr
::AddAttribute(const BaseNL80211Attr& attribute) {
152
void
NL80211NestedAttr
::AddFlagAttribute(int attribute_id) {
164
bool
NL80211NestedAttr
::HasAttribute(int id) const {
170
bool
NL80211NestedAttr
::GetAttribute(int id,
171
NL80211NestedAttr
* attribute) const
[
all
...]
nl80211_attribute.h
133
class
NL80211NestedAttr
: public BaseNL80211Attr {
135
explicit
NL80211NestedAttr
(int id);
136
explicit
NL80211NestedAttr
(const std::vector<uint8_t>& data);
137
~
NL80211NestedAttr
() override = default;
150
bool GetAttribute(int id,
NL80211NestedAttr
* attribute) const;
208
bool GetListOfNestedAttributes(std::vector<
NL80211NestedAttr
>* value) const;
netlink_utils.cpp
279
NL80211NestedAttr
bands_attr(0);
284
vector<
NL80211NestedAttr
> bands;
293
NL80211NestedAttr
freqs_attr(0);
298
vector<
NL80211NestedAttr
> freqs;
362
NL80211NestedAttr
sta_info(0);
381
NL80211NestedAttr
tx_bitrate_attr(0);
nl80211_packet.h
114
bool GetAttribute(int id,
NL80211NestedAttr
* attribute) const;
nl80211_packet.cpp
200
NL80211NestedAttr
* attribute) const {
211
*attribute =
NL80211NestedAttr
(vector<uint8_t>(start, end));
netlink_manager.cpp
174
NL80211NestedAttr
multicast_groups(0);
176
vector<
NL80211NestedAttr
> groups;
663
NL80211NestedAttr
ssids_attr(0);
674
NL80211NestedAttr
freqs_attr(0);
/system/connectivity/wificond/scanning/
scan_utils.h
44
class
NL80211NestedAttr
;
134
const
NL80211NestedAttr
& bss,
164
bool GetBssTimestamp(const
NL80211NestedAttr
& bss,
scan_utils.cpp
132
NL80211NestedAttr
bss(0);
187
const
NL80211NestedAttr
& bss,
192
bool ScanUtils::GetBssTimestamp(const
NL80211NestedAttr
& bss,
264
NL80211NestedAttr
ssids_attr(NL80211_ATTR_SCAN_SSIDS);
268
NL80211NestedAttr
freqs_attr(NL80211_ATTR_SCAN_FREQUENCIES);
367
NL80211NestedAttr
scan_ssids_attr(NL80211_ATTR_SCAN_SSIDS);
371
NL80211NestedAttr
freqs_attr(NL80211_ATTR_SCAN_FREQUENCIES);
380
NL80211NestedAttr
scan_match_attr(NL80211_ATTR_SCHED_SCAN_MATCH);
382
NL80211NestedAttr
match_group(i);
402
NL80211NestedAttr
scan_plans(NL80211_ATTR_SCHED_SCAN_PLANS)
[
all
...]
/system/connectivity/wificond/tests/
nl80211_attribute_unittest.cpp
151
NL80211NestedAttr
nested_attr(1);
169
NL80211NestedAttr
nested_attr(1);
170
NL80211NestedAttr
deeper_nested_attr(2);
180
NL80211NestedAttr
nested_attr(1);
191
NL80211NestedAttr
nested_attr(1);
260
NL80211NestedAttr
nested_attr(buffer);
270
std::vector<
NL80211NestedAttr
> nested_attrs;
271
NL80211NestedAttr
attr(buffer);
netlink_utils_unittest.cpp
109
NL80211NestedAttr
freq_2g_1(1);
110
NL80211NestedAttr
freq_2g_2(2);
111
NL80211NestedAttr
freq_2g_3(3);
112
NL80211NestedAttr
freq_5g_1(4);
113
NL80211NestedAttr
freq_5g_2(5);
114
NL80211NestedAttr
freq_dfs_1(6);
132
NL80211NestedAttr
band_2g_freqs(NL80211_BAND_ATTR_FREQS);
133
NL80211NestedAttr
band_5g_freqs(NL80211_BAND_ATTR_FREQS);
141
NL80211NestedAttr
band_2g_attr(1);
142
NL80211NestedAttr
band_5g_attr(2)
[
all
...]
scan_utils_unittest.cpp
237
NL80211NestedAttr
bss(NL80211_ATTR_BSS);
251
NL80211NestedAttr
bss(NL80211_ATTR_BSS);
265
NL80211NestedAttr
bss(NL80211_ATTR_BSS);
282
NL80211NestedAttr
bss(NL80211_ATTR_BSS);
nl80211_packet_unittest.cpp
158
NL80211NestedAttr
nested_attr(1);
223
NL80211NestedAttr
nested(0);
245
NL80211NestedAttr
nested(0);
Completed in 132 milliseconds