Lines Matching defs:survey
2078 wpa_printf(MSG_DEBUG, "nl80211: survey data missing!");
2147 wpa_printf(MSG_DEBUG, "nl80211: Survey data missing");
10027 struct freq_survey *survey, *tmp;
10032 dl_list_for_each_safe(survey, tmp, &survey_results->survey_list,
10034 dl_list_del(&survey->list);
10035 os_free(survey);
10043 struct freq_survey *survey;
10045 survey = os_zalloc(sizeof(struct freq_survey));
10046 if (!survey)
10049 survey->ifidx = ifidx;
10050 survey->freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
10051 survey->filled = 0;
10054 survey->nf = (int8_t)
10056 survey->filled |= SURVEY_HAS_NF;
10060 survey->channel_time =
10062 survey->filled |= SURVEY_HAS_CHAN_TIME;
10066 survey->channel_time_busy =
10068 survey->filled |= SURVEY_HAS_CHAN_TIME_BUSY;
10072 survey->channel_time_rx =
10074 survey->filled |= SURVEY_HAS_CHAN_TIME_RX;
10078 survey->channel_time_tx =
10080 survey->filled |= SURVEY_HAS_CHAN_TIME_TX;
10083 wpa_printf(MSG_DEBUG, "nl80211: Freq survey dump event (freq=%d MHz noise=%d channel_time=%ld busy_time=%ld tx_time=%ld rx_time=%ld filled=%04x)",
10084 survey->freq,
10085 survey->nf,
10086 (unsigned long int) survey->channel_time,
10087 (unsigned long int) survey->channel_time_busy,
10088 (unsigned long int) survey->channel_time_tx,
10089 (unsigned long int) survey->channel_time_rx,
10090 survey->filled);
10092 dl_list_add_tail(survey_list, &survey->list);
10136 wpa_printf(MSG_ERROR, "nl80211: Invalid survey data");
10148 wpa_printf(MSG_EXCESSIVE, "nl80211: Ignoring survey data for freq %d MHz",
10185 wpa_printf(MSG_DEBUG, "nl80211: Fetch survey data");
10191 wpa_printf(MSG_ERROR, "nl80211: Failed to process survey data");