HomeSort by: relevance | last modified time | path
    Searched defs:smbios (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/lib/libgnuefi/
Makefile 53 SRCS+= boxdraw.c smbios.c console.c crc.c data.c debug.c dpath.c \
62 COPTS.smbios.c= -Wno-int-to-pointer-cast
  /src/sys/stand/efiboot/
efiacpi.c 34 #include "smbios.h"
115 struct smbtable smbios; local in function:efi_acpi_get_model
126 smbios.cookie = 0;
127 if (smbios_find_table(SMBIOS_TYPE_SYSTEM, &smbios)) {
128 psys = smbios.tblhdr;
129 if ((s = smbios_get_string(&smbios, psys->vendor, buf, 64)) != NULL) {
133 smbios_get_string(&smbios, psys->product, buf, 64);
157 command_printtab("SMBIOS", "%s\n", efi_acpi_get_model());
  /src/sys/dev/
smbios_platform.c 70 struct smbtable smbios; local in function:platform_init
85 "smbios", SYSCTL_DESCR("SMBIOS table pointer"),
90 "(machdep.smbios) failed, err = %d\n", err);
93 smbios.cookie = 0;
94 if (smbios_find_table(SMBIOS_TYPE_SYSTEM, &smbios)) {
95 psys = smbios.tblhdr;
97 platform_add(&smbios, "system-vendor", psys->vendor);
98 platform_add(&smbios, "system-product", psys->product);
99 platform_add(&smbios, "system-version", psys->version)
    [all...]
  /src/sys/arch/ia64/stand/ia64/efi/
main.c 68 EFI_GUID smbios = SMBIOS_TABLE_GUID; variable in typeref:typename:EFI_GUID
304 else if (!memcmp(guid, &smbios, sizeof(EFI_GUID)))
305 printf("SMBIOS Table");

Completed in 13 milliseconds