OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:n_rates
(Results
1 - 2
of
2
) sorted by null
/external/iw/
ibss.c
28
int
n_rates
= 0;
local
138
while (value &&
n_rates
< NL80211_MAX_SUPP_RATES) {
140
rates[
n_rates
] = rate * 2;
143
if (*end != '\0' || !rates[
n_rates
] ||
144
rate*2 != rates[
n_rates
])
147
n_rates
++;
151
NLA_PUT(msg, NL80211_ATTR_BSS_BASIC_RATES,
n_rates
, rates);
mesh.c
442
int bintval, dtim_period, i,
n_rates
= 0;
local
521
while (value &&
n_rates
< NL80211_MAX_SUPP_RATES) {
523
rates[
n_rates
] = rate * 2;
526
if (*end != '\0' || !rates[
n_rates
] ||
527
rate*2 != rates[
n_rates
])
530
n_rates
++;
534
NLA_PUT(msg, NL80211_ATTR_BSS_BASIC_RATES,
n_rates
, rates);
Completed in 270 milliseconds