Lines Matching defs:survey
1430 wpa_printf(MSG_DEBUG, "nl80211: survey data missing!");
7638 struct freq_survey *survey, *tmp;
7643 dl_list_for_each_safe(survey, tmp, &survey_results->survey_list,
7645 dl_list_del(&survey->list);
7646 os_free(survey);
7654 struct freq_survey *survey;
7656 survey = os_zalloc(sizeof(struct freq_survey));
7657 if (!survey)
7660 survey->ifidx = ifidx;
7661 survey->freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
7662 survey->filled = 0;
7665 survey->nf = (int8_t)
7667 survey->filled |= SURVEY_HAS_NF;
7671 survey->channel_time =
7673 survey->filled |= SURVEY_HAS_CHAN_TIME;
7677 survey->channel_time_busy =
7679 survey->filled |= SURVEY_HAS_CHAN_TIME_BUSY;
7683 survey->channel_time_rx =
7685 survey->filled |= SURVEY_HAS_CHAN_TIME_RX;
7689 survey->channel_time_tx =
7691 survey->filled |= SURVEY_HAS_CHAN_TIME_TX;
7694 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)",
7695 survey->freq,
7696 survey->nf,
7697 (unsigned long int) survey->channel_time,
7698 (unsigned long int) survey->channel_time_busy,
7699 (unsigned long int) survey->channel_time_tx,
7700 (unsigned long int) survey->channel_time_rx,
7701 survey->filled);
7703 dl_list_add_tail(survey_list, &survey->list);
7750 wpa_printf(MSG_ERROR, "nl80211: Invalid survey data");
7762 wpa_printf(MSG_EXCESSIVE, "nl80211: Ignoring survey data for freq %d MHz",
7795 wpa_printf(MSG_DEBUG, "nl80211: Fetch survey data");
7801 wpa_printf(MSG_ERROR, "nl80211: Failed to process survey data");