Lines Matching defs:survey

1276 		wpa_printf(MSG_DEBUG, "nl80211: survey data missing!");
6700 struct freq_survey *survey, *tmp;
6705 dl_list_for_each_safe(survey, tmp, &survey_results->survey_list,
6707 dl_list_del(&survey->list);
6708 os_free(survey);
6716 struct freq_survey *survey;
6718 survey = os_zalloc(sizeof(struct freq_survey));
6719 if (!survey)
6722 survey->ifidx = ifidx;
6723 survey->freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
6724 survey->filled = 0;
6727 survey->nf = (int8_t)
6729 survey->filled |= SURVEY_HAS_NF;
6733 survey->channel_time =
6735 survey->filled |= SURVEY_HAS_CHAN_TIME;
6739 survey->channel_time_busy =
6741 survey->filled |= SURVEY_HAS_CHAN_TIME_BUSY;
6745 survey->channel_time_rx =
6747 survey->filled |= SURVEY_HAS_CHAN_TIME_RX;
6751 survey->channel_time_tx =
6753 survey->filled |= SURVEY_HAS_CHAN_TIME_TX;
6756 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)",
6757 survey->freq,
6758 survey->nf,
6759 (unsigned long int) survey->channel_time,
6760 (unsigned long int) survey->channel_time_busy,
6761 (unsigned long int) survey->channel_time_tx,
6762 (unsigned long int) survey->channel_time_rx,
6763 survey->filled);
6765 dl_list_add_tail(survey_list, &survey->list);
6812 wpa_printf(MSG_ERROR, "nl80211: Invalid survey data");
6824 wpa_printf(MSG_EXCESSIVE, "nl80211: Ignoring survey data for freq %d MHz",
6857 wpa_printf(MSG_DEBUG, "nl80211: Fetch survey data");
6863 wpa_printf(MSG_ERROR, "nl80211: Failed to process survey data");