/freebsd/contrib/wpa/src/wps/ |
H A D | wps_dev_attr.c | 19 wpa_printf(MSG_DEBUG, "WPS: * Manufacturer"); in wps_build_manufacturer() 21 len = dev->manufacturer ? os_strlen(dev->manufacturer) : 0; in wps_build_manufacturer() 35 wpabuf_put_data(msg, dev->manufacturer, len); in wps_build_manufacturer() 264 wpa_printf(MSG_DEBUG, "WPS: No Manufacturer received"); in wps_process_manufacturer() 268 wpa_hexdump_ascii(MSG_DEBUG, "WPS: Manufacturer", str, str_len); in wps_process_manufacturer() 270 os_free(dev->manufacturer); in wps_process_manufacturer() 271 dev->manufacturer = dup_binstr(str, str_len); in wps_process_manufacturer() 272 if (dev->manufacturer == NULL) in wps_process_manufacturer() 379 if (wps_process_manufacturer(dev, attr->manufacturer, in wps_process_device_attrs() 434 os_free(dev->manufacturer); in wps_device_data_free() [all …]
|
/freebsd/contrib/libfido2/src/ |
H A D | hid.c | 129 free(di->manufacturer); in fido_dev_info_reset() 158 const char *path, const char *manufacturer, const char *product, in fido_dev_info_set() argument 164 if (path == NULL || manufacturer == NULL || product == NULL || in fido_dev_info_set() 171 (manu_copy = strdup(manufacturer)) == NULL || in fido_dev_info_set() 179 devlist[i].manufacturer = manu_copy; in fido_dev_info_set() 215 return (di->manufacturer); in fido_dev_info_manufacturer_string()
|
H A D | hid_win.c | 125 get_manufacturer(HANDLE dev, char **manufacturer) in get_manufacturer() argument 131 *manufacturer = NULL; in get_manufacturer() 144 if ((*manufacturer = malloc((size_t)utf8_len)) == NULL) { in get_manufacturer() 150 *manufacturer, utf8_len, NULL, NULL) != utf8_len) { in get_manufacturer() 158 free(*manufacturer); in get_manufacturer() 159 *manufacturer = NULL; in get_manufacturer() 338 if (get_manufacturer(dev, &di->manufacturer) < 0) { in copy_info() 340 di->manufacturer = strdup(""); in copy_info() 348 if (di->manufacturer == NULL || di->product == NULL) { in copy_info() 349 fido_log_debug("%s: manufacturer/product", __func__); in copy_info() [all …]
|
H A D | hid_osx.c | 134 get_str(IOHIDDeviceRef dev, char **manufacturer, char **product) in get_str() argument 139 *manufacturer = NULL; in get_str() 143 *manufacturer = strdup(""); in get_str() 145 *manufacturer = strdup(buf); in get_str() 152 if (*manufacturer == NULL || *product == NULL) { in get_str() 160 free(*manufacturer); in get_str() 162 *manufacturer = NULL; in get_str() 229 get_str(dev, &di->manufacturer, &di->product) < 0 || in copy_info() 232 free(di->manufacturer); in copy_info()
|
H A D | hid_hidapi.c | 68 di->manufacturer = wcs_to_cs(d->manufacturer_string); in copy_info() 70 di->manufacturer = strdup(""); in copy_info() 78 di->manufacturer == NULL || in copy_info() 81 free(di->manufacturer); in copy_info()
|
H A D | hid_freebsd.c | 87 (di->manufacturer = strdup(UHID_VENDOR)) == NULL || in copy_info_hidraw() 94 (di->manufacturer = strdup(udi.udi_vendor)) == NULL || in copy_info_hidraw() 108 free(di->manufacturer); in copy_info_hidraw() 138 (di->manufacturer = strdup(udi.udi_vendor)) == NULL || in copy_info_uhid() 151 free(di->manufacturer); in copy_info_uhid()
|
H A D | hid_linux.c | 164 if ((di->manufacturer = get_usb_attr(dev, "manufacturer")) == NULL) in copy_info() 165 di->manufacturer = strdup(""); in copy_info() 168 if (di->path == NULL || di->manufacturer == NULL || di->product == NULL) in copy_info() 180 free(di->manufacturer); in copy_info()
|
H A D | nfc_linux.c | 79 if ((di->manufacturer = get_usb_attr(dev, "manufacturer")) == NULL) in copy_info() 80 di->manufacturer = strdup(""); in copy_info() 83 if (di->manufacturer == NULL || di->product == NULL) in copy_info() 102 free(di->manufacturer); in copy_info()
|
/freebsd/contrib/libfido2/man/ |
H A D | fido_dev_info_manifest.3 | 64 …"fido_dev_info_t *devlist" "size_t i" "const char *path" "const char *manufacturer" "const char *p… 139 function returns the manufacturer string of 143 does not have an associated manufacturer string, 167 with the specified path, manufacturer, and product strings, and with
|
/freebsd/contrib/wpa/wpa_supplicant/dbus/ |
H A D | 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, in wpas_dbus_getter_wps_manufacturer() 538 * wpas_dbus_setter_wps_manufacturer - Set current manufacturer name 544 * Setter for "Manufacturer" property. 551 char *methods, *manufacturer; in wpas_dbus_setter_wps_manufacturer() local 560 manufacturer = os_strdup(methods); in wpas_dbus_setter_wps_manufacturer() 561 if (!manufacturer) in wpas_dbus_setter_wps_manufacturer() 564 os_free(wpa_s->conf->manufacturer); in wpas_dbus_setter_wps_manufacturer() 565 wpa_s->conf->manufacturer = manufacturer; in wpas_dbus_setter_wps_manufacturer()
|
/freebsd/sys/contrib/xen/hvm/ |
H A D | hvm_xs_strings.h | 68 #define HVM_XS_SYSTEM_MANUFACTURER "bios-strings/system-manufacturer" 72 #define HVM_XS_BASEBOARD_MANUFACTURER "bios-strings/baseboard-manufacturer" 78 #define HVM_XS_ENCLOSURE_MANUFACTURER "bios-strings/enclosure-manufacturer" 81 #define HVM_XS_BATTERY_MANUFACTURER "bios-strings/battery-manufacturer"
|
/freebsd/share/man/man4/ |
H A D | aibs.4 | 58 as defined by the motherboard manufacturer through 138 the motherboard manufacturer through 141 are encoded into the driver based on the chip manufacturer's recommendations. 154 for each individual sensor as suggested by the motherboard manufacturer.
|
/freebsd/sys/contrib/device-tree/Bindings/usb/ |
H A D | usb251xb.txt | 21 - manufacturer : Set USB Manufacturer string (max 31 characters long) 43 - string-support : enable string descriptor support (required for manufacturer, 84 manufacturer = "Foo";
|
H A D | aspeed,usb-vhub.yaml | 90 manufacturer: 91 description: vhub manufacturer 134 manufacturer = "ASPEED";
|
H A D | usb251xb.yaml | 65 manufacturer: 68 Set USB Manufacturer string (max 31 characters long) 172 enable string descriptor support (required for manufacturer, product 265 manufacturer = "Foo";
|
/freebsd/sys/contrib/device-tree/Bindings/nvmem/layouts/ |
H A D | onie,tlv-layout.yaml | 15 content is well specified and gives many information about the manufacturer 20 parameters the manufacturer decided to embed. 76 manufacturer:
|
/freebsd/usr.sbin/bluetooth/hccontrol/ |
H A D | info.c | 58 rp.manufacturer = le16toh(rp.manufacturer); in hci_read_local_version_information() 68 fprintf(stdout, "Manufacturer: %s [%#04x]\n", in hci_read_local_version_information() 69 hci_manufacturer2str(rp.manufacturer), rp.manufacturer); in hci_read_local_version_information()
|
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ddr/ |
H A D | lpddr3.txt | 15 - manufacturer-id : <u32> Manufacturer ID value read from Mode Register 5 56 manufacturer-id = <1>;
|
/freebsd/sys/contrib/device-tree/Bindings/ddr/ |
H A D | lpddr3.txt | 15 - manufacturer-id : <u32> Manufacturer ID value read from Mode Register 5 55 manufacturer-id = <1>;
|
/freebsd/sys/dev/pccard/ |
H A D | pccardvarp.h | 140 * Use int32_t for manufacturer and product so that they can 144 int32_t manufacturer; member 179 int32_t manufacturer; member
|
/freebsd/sys/contrib/device-tree/Bindings/misc/ |
H A D | idt_89hpesx.txt | 4 - compatible : should be "<manufacturer>,<type>" 5 Basically there is only one manufacturer: idt, but some
|
/freebsd/contrib/libevent/build-aux/ |
H A D | config.sub | 48 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM 50 # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM 642 # Here we handle the default manufacturer of certain CPU types. It is in 643 # some cases the only manufacturer, in others, it is the most popular. 954 # Here we handle the default manufacturer of certain CPU types in canonical form. It is in 955 # some cases the only manufacturer, in others, it is the most popular. 1276 # Decode manufacturer-specific aliases for certain operating systems. 1525 # Note that if you're going to try to match "-MANUFACTURER" here (say, 1527 # that MANUFACTURER isn't an operating system. Otherwise, code above 1528 # will signal an error saying that MANUFACTURER isn't an operating [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/slimbus/ |
H A D | bus.txt | 13 Manufacturer ID, Product code, Device index, and Instance value for 31 - compatible -"slimMID,PID". The textual representation of Manufacturer ID,
|
/freebsd/contrib/dialog/ |
H A D | config.sub | 48 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM 50 # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM 645 # Here we handle the default manufacturer of certain CPU types. It is in 646 # some cases the only manufacturer, in others, it is the most popular. 957 # Here we handle the default manufacturer of certain CPU types in canonical form. It is in 958 # some cases the only manufacturer, in others, it is the most popular. 1279 # Decode manufacturer-specific aliases for certain operating systems. 1496 # Note that if you're going to try to match "-MANUFACTURER" here (say, 1498 # that MANUFACTURER isn't an operating system. Otherwise, code above 1499 # will signal an error saying that MANUFACTURER isn't an operating [all …]
|
/freebsd/contrib/file/ |
H A D | config.sub | 50 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM 52 # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM 660 # Here we handle the default manufacturer of certain CPU types. It is in 661 # some cases the only manufacturer, in others, it is the most popular. 974 # Here we handle the default manufacturer of certain CPU types in canonical form. It is in 975 # some cases the only manufacturer, in others, it is the most popular. 1303 # Decode manufacturer-specific aliases for certain operating systems. 1520 # Note that if you're going to try to match "-MANUFACTURER" here (say, 1522 # that MANUFACTURER isn't an operating system. Otherwise, code above 1523 # will signal an error saying that MANUFACTURER isn't an operating [all …]
|