Home | History | Annotate | Download | only in drivers

Lines Matching defs:survey

1298 		wpa_printf(MSG_DEBUG, "nl80211: survey data missing!");
7002 struct freq_survey *survey, *tmp;
7007 dl_list_for_each_safe(survey, tmp, &survey_results->survey_list,
7009 dl_list_del(&survey->list);
7010 os_free(survey);
7018 struct freq_survey *survey;
7020 survey = os_zalloc(sizeof(struct freq_survey));
7021 if (!survey)
7024 survey->ifidx = ifidx;
7025 survey->freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
7026 survey->filled = 0;
7029 survey->nf = (int8_t)
7031 survey->filled |= SURVEY_HAS_NF;
7035 survey->channel_time =
7037 survey->filled |= SURVEY_HAS_CHAN_TIME;
7041 survey->channel_time_busy =
7043 survey->filled |= SURVEY_HAS_CHAN_TIME_BUSY;
7047 survey->channel_time_rx =
7049 survey->filled |= SURVEY_HAS_CHAN_TIME_RX;
7053 survey->channel_time_tx =
7055 survey->filled |= SURVEY_HAS_CHAN_TIME_TX;
7058 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)",
7059 survey->freq,
7060 survey->nf,
7061 (unsigned long int) survey->channel_time,
7062 (unsigned long int) survey->channel_time_busy,
7063 (unsigned long int) survey->channel_time_tx,
7064 (unsigned long int) survey->channel_time_rx,
7065 survey->filled);
7067 dl_list_add_tail(survey_list, &survey->list);
7114 wpa_printf(MSG_ERROR, "nl80211: Invalid survey data");
7126 wpa_printf(MSG_EXCESSIVE, "nl80211: Ignoring survey data for freq %d MHz",
7159 wpa_printf(MSG_DEBUG, "nl80211: Fetch survey data");
7165 wpa_printf(MSG_ERROR, "nl80211: Failed to process survey data");