| /src/external/bsd/libfido2/dist/src/ |
| hid.c | 129 free(di->manufacturer); 158 const char *path, const char *manufacturer, const char *product, 164 if (path == NULL || manufacturer == NULL || product == NULL || 171 (manu_copy = strdup(manufacturer)) == NULL || 179 devlist[i].manufacturer = manu_copy; 215 return (di->manufacturer);
|
| hid_win.c | 125 get_manufacturer(HANDLE dev, char **manufacturer) 131 *manufacturer = NULL; 144 if ((*manufacturer = malloc((size_t)utf8_len)) == NULL) { 150 *manufacturer, utf8_len, NULL, NULL) != utf8_len) { 158 free(*manufacturer); 159 *manufacturer = NULL; 338 if (get_manufacturer(dev, &di->manufacturer) < 0) { 340 di->manufacturer = strdup(""); 348 if (di->manufacturer == NULL || di->product == NULL) { 349 fido_log_debug("%s: manufacturer/product", __func__) [all...] |
| hid_osx.c | 134 get_str(IOHIDDeviceRef dev, char **manufacturer, char **product) 139 *manufacturer = NULL; 143 *manufacturer = strdup(""); 145 *manufacturer = strdup(buf); 152 if (*manufacturer == NULL || *product == NULL) { 160 free(*manufacturer); 162 *manufacturer = NULL; 229 get_str(dev, &di->manufacturer, &di->product) < 0 || 232 free(di->manufacturer);
|
| hid_linux.c | 172 di->manufacturer = get_usb_attr(dev, "manufacturer"); 175 if (di->manufacturer == NULL && di->product == NULL) { 179 if (di->manufacturer == NULL) 180 di->manufacturer = strdup(""); 183 if (di->path == NULL || di->manufacturer == NULL || di->product == NULL) 196 free(di->manufacturer);
|
| hid_hidapi.c | 68 di->manufacturer = wcs_to_cs(d->manufacturer_string); 70 di->manufacturer = strdup(""); 78 di->manufacturer == NULL || 81 free(di->manufacturer);
|
| hid_freebsd.c | 87 (di->manufacturer = strdup(UHID_VENDOR)) == NULL || 94 (di->manufacturer = strdup(udi.udi_vendor)) == NULL || 108 free(di->manufacturer); 138 (di->manufacturer = strdup(udi.udi_vendor)) == NULL || 151 free(di->manufacturer);
|
| nfc_linux.c | 79 if ((di->manufacturer = get_usb_attr(dev, "manufacturer")) == NULL) 80 di->manufacturer = strdup(""); 83 if (di->manufacturer == NULL || di->product == NULL) 102 free(di->manufacturer);
|
| hid_netbsd.c | 102 (di->manufacturer = strdup(udi.udi_vendor)) == NULL || 116 free(di->manufacturer);
|
| hid_openbsd.c | 56 (di->manufacturer = strdup(udi.udi_vendor)) == NULL || 70 free(di->manufacturer);
|
| /src/sys/arch/acorn32/include/ |
| podulebus_machdep.h | 59 u_short manufacturer; member in struct:__anon862 127 #define pa_manufacturer pa_podule->manufacturer 154 int manufacturer, int product, int required_slot);
|
| /src/external/bsd/wpa/dist/src/wps/ |
| wps_dev_attr.c | 19 wpa_printf(MSG_DEBUG, "WPS: * Manufacturer"); 21 len = dev->manufacturer ? os_strlen(dev->manufacturer) : 0; 35 wpabuf_put_data(msg, dev->manufacturer, len); 264 wpa_printf(MSG_DEBUG, "WPS: No Manufacturer received"); 268 wpa_hexdump_ascii(MSG_DEBUG, "WPS: Manufacturer", str, str_len); 270 os_free(dev->manufacturer); 271 dev->manufacturer = dup_binstr(str, str_len); 272 if (dev->manufacturer == NULL) 379 if (wps_process_manufacturer(dev, attr->manufacturer, [all...] |
| wps_er.h | 23 char *manufacturer; member in struct:wps_er_sta 47 char *manufacturer; member in struct:wps_er_ap
|
| wps_attr_parse.h | 61 const u8 *manufacturer; member in struct:wps_parse_attr
|
| wps_validate.c | 304 static int wps_validate_manufacturer(const u8 *manufacturer, size_t len, 307 if (manufacturer == NULL) { 309 wpa_printf(MSG_INFO, "WPS-STRICT: Manufacturer " 315 if (len > 0 && manufacturer[len - 1] == 0) { 316 wpa_hexdump_ascii(MSG_INFO, "WPS-STRICT: Invalid Manufacturer " 317 "attribute value", manufacturer, len); 1150 wps_validate_manufacturer(attr.manufacturer, attr.manufacturer_len, 1208 wps_validate_manufacturer(attr.manufacturer, attr.manufacturer_len, 1312 wps_validate_manufacturer(attr.manufacturer, attr.manufacturer_len, 1367 wps_validate_manufacturer(attr.manufacturer, attr.manufacturer_len [all...] |
| wps_er.c | 51 ev->manufacturer = sta->manufacturer; 79 os_free(sta->manufacturer); 139 evap->manufacturer = ap->manufacturer; 161 os_free(ap->manufacturer); 557 ap->manufacturer = xml_get_first_item(data, "manufacturer"); 558 wpa_printf(MSG_DEBUG, "WPS ER: manufacturer='%s'", ap->manufacturer); [all...] |
| /src/crypto/external/cpl/trousers/dist/src/include/linux/ |
| tpm.h | 37 extern ssize_t tpm_cap_manufacturer(int *manufacturer);
|
| /src/sys/arch/acorn32/podulebus/ |
| podulebus.c | 157 printf("manufacturer=%02x ", podule->manufacturer); 265 /* Do we know this manufacturer ? */ 269 podule->manufacturer) 274 printf("man=%04x : ", podule->manufacturer); 370 podule->manufacturer = address[20] + (address[24] << 8); 482 podules[loop].manufacturer = value >> 16; 488 loop, podules[loop].manufacturer, 529 matchpodule(struct podule_attach_args *pa, int manufacturer, int product, int required_slot) 534 if (IS_PODULE(pa, manufacturer, product) [all...] |
| netslot.c | 120 podule->manufacturer = *address; 121 podule->manufacturer += (*address << 8);
|
| /src/sys/dev/sdmmc/ |
| sdmmc_cis.c | 284 cis->manufacturer = sdmmc_io_read_1(sf0, reg++); 285 cis->manufacturer |= sdmmc_io_read_1(sf0, reg++) << 8; 338 printf("%s: Manufacturer code 0x%x, product 0x%x\n", device_xname(dev), 339 cis->manufacturer, cis->product); 351 if (sf->cis.manufacturer == SDMMC_VENDOR_SPECTEC &&
|
| sdmmc.c | 477 saa.manufacturer = sf->cis.manufacturer; 547 if ((cis->manufacturer != SDMMC_VENDOR_INVALID && 550 x = !!(cis->manufacturer != SDMMC_VENDOR_INVALID); 554 if (cis->manufacturer != SDMMC_VENDOR_INVALID) 555 printf("manufacturer 0x%x%s", 556 cis->manufacturer, (--x == 0) ? "" : ", "); 692 sf->cis.manufacturer = SDMMC_VENDOR_INVALID;
|
| /src/sys/dev/pcmcia/ |
| pcmcia_cis_quirks.c | 276 if (card->manufacturer == quirk->manufacturer && 277 card->manufacturer != PCMCIA_VENDOR_INVALID &&
|
| pcmciavar.h | 175 * Use int32_t for manufacturer and product so that they can 179 int32_t manufacturer; member in struct:pcmcia_card 203 int32_t manufacturer; member in struct:pcmcia_cis_quirk 211 int32_t manufacturer; member in struct:pcmcia_attach_args
|
| /src/external/bsd/wpa/dist/wpa_supplicant/dbus/ |
| dbus_new_handlers_wps.c | 518 * wpas_dbus_getter_wps_manufacturer - Get current manufacturer name 524 * Getter for "Manufacturer" property. 532 return wpas_dbus_string_property_getter(iter, wpa_s->conf->manufacturer, 538 * wpas_dbus_setter_wps_manufacturer - Set current manufacturer name 544 * Setter for "Manufacturer" property. 551 char *methods, *manufacturer; local 560 manufacturer = os_strdup(methods); 561 if (!manufacturer) 564 os_free(wpa_s->conf->manufacturer); 565 wpa_s->conf->manufacturer = manufacturer [all...] |
| /src/sys/dev/podulebus/ |
| esp_podule.c | 97 int manufacturer; member in struct:__anon3604 113 if (pa->pa_manufacturer == devices[i].manufacturer && 129 if (pa->pa_manufacturer == devices[i].manufacturer && 133 aprint_error(": lost manufacturer 0x%04x, product 0x%04x\n",
|
| /src/sys/arch/evbarm/stand/boot2440/ |
| dev_sdmmc.h | 70 int mid; /* manufacturer identification number */ 143 uint16_t manufacturer; member in struct:sdmmc_cis
|