Home | History | Annotate | Download | only in wps

Lines Matching refs:manufacturer

26 	wpa_printf(MSG_DEBUG, "WPS:  * Manufacturer");
28 len = dev->manufacturer ? os_strlen(dev->manufacturer) : 0;
39 wpabuf_put_data(msg, dev->manufacturer, len);
187 wpa_printf(MSG_DEBUG, "WPS: No Manufacturer received");
191 wpa_hexdump_ascii(MSG_DEBUG, "WPS: Manufacturer", str, str_len);
193 os_free(dev->manufacturer);
194 dev->manufacturer = os_malloc(str_len + 1);
195 if (dev->manufacturer == NULL)
197 os_memcpy(dev->manufacturer, str, str_len);
198 dev->manufacturer[str_len] = '\0';
314 if (wps_process_manufacturer(dev, attr->manufacturer,
362 if (src->manufacturer)
363 dst->manufacturer = os_strdup(src->manufacturer);
382 os_free(dev->manufacturer);
383 dev->manufacturer = NULL;