Lines Matching refs:results
118 struct wpa_scan_results *results;
131 wpa_printf(MSG_DEBUG, "privsep: Received %lu bytes of scan results",
149 results = os_zalloc(sizeof(*results));
150 if (results == NULL) {
155 results->res = os_calloc(num, sizeof(struct wpa_scan_res *));
156 if (results->res == NULL) {
157 os_free(results);
162 while (results->num < (size_t) num && pos + sizeof(int) < end) {
179 results->res[results->num++] = r;
183 return results;