Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching defs:freqs

951 	int *freqs;
957 freqs = os_zalloc((len + 1) * sizeof(int));
958 if (freqs == NULL)
968 n = os_realloc(freqs, (len * 2 + 1) * sizeof(int));
970 os_free(freqs);
975 freqs = n;
979 freqs[used] = atoi(pos);
980 if (freqs[used] == 0)
986 return freqs;
994 int *freqs;
996 freqs = wpa_config_parse_freqs(data, ssid, line, value);
997 if (freqs == NULL)
1000 ssid->scan_freq = freqs;
1010 int *freqs;
1012 freqs = wpa_config_parse_freqs(data, ssid, line, value);
1013 if (freqs == NULL)
1016 ssid->freq_list = freqs;
1024 const int *freqs)
1030 if (freqs == NULL)
1034 for (i = 0; freqs[i]; i++)
1042 for (i = 0; freqs[i]; i++) {
1044 i == 0 ? "" : " ", freqs[i]);