Home | History | Annotate | Download | only in wps

Lines Matching refs:manufacturer

25 	wpa_printf(MSG_DEBUG, "WPS:  * Manufacturer");
27 len = dev->manufacturer ? os_strlen(dev->manufacturer) : 0;
41 wpabuf_put_data(msg, dev->manufacturer, len);
245 wpa_printf(MSG_DEBUG, "WPS: No Manufacturer received");
249 wpa_hexdump_ascii(MSG_DEBUG, "WPS: Manufacturer", str, str_len);
251 os_free(dev->manufacturer);
252 dev->manufacturer = os_malloc(str_len + 1);
253 if (dev->manufacturer == NULL)
255 os_memcpy(dev->manufacturer, str, str_len);
256 dev->manufacturer[str_len] = '\0';
370 if (wps_process_manufacturer(dev, attr->manufacturer,
418 if (src->manufacturer)
419 dst->manufacturer = os_strdup(src->manufacturer);
436 os_free(dev->manufacturer);
437 dev->manufacturer = NULL;