HomeSort by relevance Sort by last modified time
    Searched refs:SmbiosRecord (Results 1 - 25 of 58) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/
MiscPhysicalArrayFunction.c 57 SMBIOS_TABLE_TYPE16 *SmbiosRecord;
73 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE16) + 1);
74 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE16) + 1);
76 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_PHYSICAL_MEMORY_ARRAY;
77 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE16);
82 SmbiosRecord->Hdr.Handle = 0;
87 SmbiosRecord->Location = *(UINT8 *) &ForType16InputData ->MemoryArrayLocation;
88 SmbiosRecord->Use = *(UINT8 *) &ForType16InputData ->MemoryArrayUse;
89 SmbiosRecord->MemoryErrorCorrection = *(UINT8 *) &ForType16InputData->MemoryErrorCorrection;
94 SmbiosRecord->MemoryErrorInformationHandle = 0xFFFE;
    [all...]
MiscResetCapabilitiesFunction.c 54 SMBIOS_TABLE_TYPE23 *SmbiosRecord;
70 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE23) + 1 + 1);
71 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE23) + 1 + 1);
73 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_RESET;
74 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE23);
79 SmbiosRecord->Hdr.Handle = 0;
80 SmbiosRecord->Capabilities = *(UINT8*)&(ForType23InputData->ResetCapabilities);
81 SmbiosRecord->ResetCount = (UINT16)ForType23InputData->ResetCount;
82 SmbiosRecord->ResetLimit = (UINT16)ForType23InputData->ResetLimit;
83 SmbiosRecord->TimerInterval = (UINT16)ForType23InputData->ResetTimerInterval;
    [all...]
MiscBootInformationFunction.c 57 SMBIOS_TABLE_TYPE32 *SmbiosRecord;
72 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE32) + 1 + 1);
73 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE32) + 1 + 1);
75 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_BOOT_INFORMATION;
76 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE32);
81 SmbiosRecord->Hdr.Handle = 0;
82 SmbiosRecord->BootStatus = (UINT8)ForType32InputData->BootInformationStatus;
92 (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord
94 FreePool(SmbiosRecord);
MiscSystemLanguageStringFunction.c 54 SMBIOS_TABLE_TYPE13 *SmbiosRecord;
78 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE13) + StrLeng + 1 + 1);
79 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE13) + StrLeng + 1 + 1);
81 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_BIOS_LANGUAGE_INFORMATION;
82 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE13);
87 SmbiosRecord->Hdr.Handle = 0;
88 SmbiosRecord->InstallableLanguages = 1;
89 SmbiosRecord->Flags = 1;
90 SmbiosRecord->CurrentLanguages = 1;
91 OptionalStrStart = (CHAR8 *)(SmbiosRecord + 1);
    [all...]
MiscOemStringFunction.c 58 SMBIOS_TABLE_TYPE11 *SmbiosRecord;
77 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE11) + OemStrLen + 1 + 1);
78 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE11) + OemStrLen + 1 + 1);
80 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_OEM_STRINGS;
81 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE11);
86 SmbiosRecord->Hdr.Handle = 0;
87 SmbiosRecord->StringCount = 1;
88 OptionalStrStart = (CHAR8 *)(SmbiosRecord + 1);
99 (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord
101 FreePool(SmbiosRecord);
    [all...]
MiscSystemOptionStringFunction.c 60 SMBIOS_TABLE_TYPE12 *SmbiosRecord;
79 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE12) + OptStrLen + 1 + 1);
80 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE12) + OptStrLen + 1 + 1);
82 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_CONFIGURATION_OPTIONS;
83 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE12);
88 SmbiosRecord->Hdr.Handle = 0;
90 SmbiosRecord->StringCount = 1;
91 OptionalStrStart = (CHAR8*) (SmbiosRecord + 1);
102 (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord
105 FreePool(SmbiosRecord);
    [all...]
MiscSystemSlotDesignationFunction.c 55 SMBIOS_TABLE_TYPE9 *SmbiosRecord;
110 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE9) + SlotDesignationStrLen + 1 + 1);
111 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE9) +SlotDesignationStrLen + 1 + 1);
113 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_SLOTS;
114 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE9);
115 SmbiosRecord->Hdr.Handle = 0;
116 SmbiosRecord->SlotDesignation = 1;
117 SmbiosRecord->SlotType = (UINT8)ForType9InputData->SlotType;
118 SmbiosRecord->SlotDataBusWidth = (UINT8)ForType9InputData->SlotDataBusWidth;
119 SmbiosRecord->CurrentUsage = (UINT8)ForType9InputData->SlotUsage;
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/MiscSubClassPlatformDxe/
MiscResetCapabilitiesFunction.c 32 SMBIOS_TABLE_TYPE23 *SmbiosRecord;
48 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE23) + 1 + 1);
49 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE23) + 1 + 1);
51 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_RESET;
52 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE23);
56 SmbiosRecord->Hdr.Handle = 0;
57 SmbiosRecord->Capabilities = *(UINT8*)&(ForType23InputData->ResetCapabilities);
58 SmbiosRecord->ResetCount = (UINT16)ForType23InputData->ResetCount;
59 SmbiosRecord->ResetLimit = (UINT16)ForType23InputData->ResetLimit;
60 SmbiosRecord->TimerInterval = (UINT16)ForType23InputData->ResetTimerInterval;
    [all...]
MiscBootInformationFunction.c 35 SMBIOS_TABLE_TYPE32 *SmbiosRecord;
50 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE32) + 1 + 1);
51 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE32) + 1 + 1);
53 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_BOOT_INFORMATION;
54 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE32);
58 SmbiosRecord->Hdr.Handle = 0;
59 SmbiosRecord->BootStatus = (UINT8)ForType32InputData->BootInformationStatus;
64 Status = AddSmbiosRecord (Smbios, &SmbiosHandle, (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord);
66 FreePool(SmbiosRecord);
MiscSystemLanguageStringFunction.c 32 SMBIOS_TABLE_TYPE13 *SmbiosRecord;
56 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE13) + StrLeng + 1 + 1);
57 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE13) + StrLeng + 1 + 1);
59 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_BIOS_LANGUAGE_INFORMATION;
60 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE13);
64 SmbiosRecord->Hdr.Handle = 0;
65 SmbiosRecord->InstallableLanguages = 1;
66 SmbiosRecord->Flags = 1;
67 SmbiosRecord->CurrentLanguages = 1;
68 OptionalStrStart = (CHAR8 *)(SmbiosRecord + 1);
    [all...]
MiscSystemSlotDesignationFunction.c 35 SMBIOS_TABLE_TYPE9 *SmbiosRecord;
66 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE9) + SlotDesignationStrLen + 1 + 1);
67 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE9) +SlotDesignationStrLen + 1 + 1);
69 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_SLOTS;
70 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE9);
71 SmbiosRecord->Hdr.Handle = 0;
72 SmbiosRecord->SlotDesignation = 1;
73 SmbiosRecord->SlotType = ForType9InputData->SlotType;
74 SmbiosRecord->SlotDataBusWidth = ForType9InputData->SlotDataBusWidth;
75 SmbiosRecord->CurrentUsage = ForType9InputData->SlotUsage;
    [all...]
MiscOemStringFunction.c 36 SMBIOS_TABLE_TYPE11 *SmbiosRecord;
55 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE11) + OemStrLen + 1 + 1);
56 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE11) + OemStrLen + 1 + 1);
58 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_OEM_STRINGS;
59 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE11);
63 SmbiosRecord->Hdr.Handle = 0;
64 SmbiosRecord->StringCount = 1;
65 OptionalStrStart = (CHAR8 *)(SmbiosRecord + 1);
71 Status = AddSmbiosRecord (Smbios, &SmbiosHandle, (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord);
73 FreePool(SmbiosRecord);
    [all...]
MiscSystemOptionStringFunction.c 38 SMBIOS_TABLE_TYPE12 *SmbiosRecord;
57 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE12) + OptStrLen + 1 + 1);
58 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE12) + OptStrLen + 1 + 1);
60 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_CONFIGURATION_OPTIONS;
61 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE12);
65 SmbiosRecord->Hdr.Handle = 0;
67 SmbiosRecord->StringCount = 1;
68 OptionalStrStart = (CHAR8*) (SmbiosRecord + 1);
73 Status = AddSmbiosRecord (Smbios, &SmbiosHandle, (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord);
75 FreePool(SmbiosRecord);
    [all...]
MiscSystemManufacturerFunction.c 50 SMBIOS_TABLE_TYPE1 *SmbiosRecord;
92 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE1) + ManuStrLen + 1 + PdNameStrLen + 1 + VerStrLen + 1 + SerialNumStrLen + 1 + 1);
93 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE1) + ManuStrLen + 1 + PdNameStrLen + 1 + VerStrLen + 1 + SerialNumStrLen + 1 + 1);
95 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_INFORMATION;
96 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE1);
100 SmbiosRecord->Hdr.Handle = 0;
104 SmbiosRecord->Manufacturer = 1;
108 SmbiosRecord->ProductName = 2;
112 SmbiosRecord->Version = 3;
116 SmbiosRecord->SerialNumber = 4;
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/MiscSubClassPlatformDxe/
MiscResetCapabilitiesFunction.c 33 SMBIOS_TABLE_TYPE23 *SmbiosRecord;
49 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE23) + 1 + 1);
50 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE23) + 1 + 1);
52 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_RESET;
53 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE23);
57 SmbiosRecord->Hdr.Handle = 0;
58 SmbiosRecord->Capabilities = *(UINT8*)&(ForType23InputData->ResetCapabilities);
59 SmbiosRecord->ResetCount = (UINT16)ForType23InputData->ResetCount;
60 SmbiosRecord->ResetLimit = (UINT16)ForType23InputData->ResetLimit;
61 SmbiosRecord->TimerInterval = (UINT16)ForType23InputData->ResetTimerInterval;
    [all...]
MiscBootInformationFunction.c 35 SMBIOS_TABLE_TYPE32 *SmbiosRecord;
50 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE32) + 1 + 1);
51 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE32) + 1 + 1);
53 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_BOOT_INFORMATION;
54 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE32);
58 SmbiosRecord->Hdr.Handle = 0;
59 SmbiosRecord->BootStatus = (UINT8)ForType32InputData->BootInformationStatus;
64 Status = AddSmbiosRecord (Smbios, &SmbiosHandle, (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord);
66 FreePool(SmbiosRecord);
MiscSystemLanguageStringFunction.c 30 SMBIOS_TABLE_TYPE13 *SmbiosRecord;
54 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE13) + StrLeng + 1 + 1);
55 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE13) + StrLeng + 1 + 1);
57 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_BIOS_LANGUAGE_INFORMATION;
58 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE13);
62 SmbiosRecord->Hdr.Handle = 0;
63 SmbiosRecord->InstallableLanguages = 1;
64 SmbiosRecord->Flags = 1;
65 SmbiosRecord->CurrentLanguages = 1;
66 OptionalStrStart = (CHAR8 *)(SmbiosRecord + 1);
    [all...]
MiscSystemSlotDesignationFunction.c 35 SMBIOS_TABLE_TYPE9 *SmbiosRecord;
66 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE9) + SlotDesignationStrLen + 1 + 1);
67 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE9) +SlotDesignationStrLen + 1 + 1);
69 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_SLOTS;
70 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE9);
71 SmbiosRecord->Hdr.Handle = 0;
72 SmbiosRecord->SlotDesignation = 1;
73 SmbiosRecord->SlotType = (UINT8)ForType9InputData->SlotType;
74 SmbiosRecord->SlotDataBusWidth = (UINT8)ForType9InputData->SlotDataBusWidth;
75 SmbiosRecord->CurrentUsage = (UINT8)ForType9InputData->SlotUsage;
    [all...]
MiscOemStringFunction.c 37 SMBIOS_TABLE_TYPE11 *SmbiosRecord;
56 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE11) + OemStrLen + 1 + 1);
57 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE11) + OemStrLen + 1 + 1);
59 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_OEM_STRINGS;
60 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE11);
64 SmbiosRecord->Hdr.Handle = 0;
65 SmbiosRecord->StringCount = 1;
66 OptionalStrStart = (CHAR8 *)(SmbiosRecord + 1);
72 Status = AddSmbiosRecord (Smbios, &SmbiosHandle, (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord);
74 FreePool(SmbiosRecord);
    [all...]
MiscSystemOptionStringFunction.c 38 SMBIOS_TABLE_TYPE12 *SmbiosRecord;
57 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE12) + OptStrLen + 1 + 1);
58 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE12) + OptStrLen + 1 + 1);
60 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_CONFIGURATION_OPTIONS;
61 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE12);
65 SmbiosRecord->Hdr.Handle = 0;
67 SmbiosRecord->StringCount = 1;
68 OptionalStrStart = (CHAR8*) (SmbiosRecord + 1);
73 Status = AddSmbiosRecord (Smbios, &SmbiosHandle, (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord);
75 FreePool(SmbiosRecord);
    [all...]
MiscSystemManufacturerFunction.c 50 SMBIOS_TABLE_TYPE1 *SmbiosRecord;
92 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE1) + ManuStrLen + 1 + PdNameStrLen + 1 + VerStrLen + 1 + SerialNumStrLen + 1 + 1);
93 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE1) + ManuStrLen + 1 + PdNameStrLen + 1 + VerStrLen + 1 + SerialNumStrLen + 1 + 1);
95 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_INFORMATION;
96 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE1);
100 SmbiosRecord->Hdr.Handle = 0;
104 SmbiosRecord->Manufacturer = 1;
108 SmbiosRecord->ProductName = 2;
112 SmbiosRecord->Version = 3;
116 SmbiosRecord->SerialNumber = 4;
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/SmbiosMiscDxe/
MiscBootInformationFunction.c 39 SMBIOS_TABLE_TYPE32 *SmbiosRecord;
54 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE32) + 1 + 1);
55 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE32) + 1 + 1);
57 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_BOOT_INFORMATION;
58 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE32);
62 SmbiosRecord->Hdr.Handle = 0;
63 SmbiosRecord->BootStatus = (UINT8)ForType32InputData->BootInformationStatus;
73 (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord
75 FreePool(SmbiosRecord);
MiscOemStringFunction.c 40 SMBIOS_TABLE_TYPE11 *SmbiosRecord;
62 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE11) + OemStrLen + 1 + 1);
63 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE11) + OemStrLen + 1 + 1);
65 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_OEM_STRINGS;
66 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE11);
70 SmbiosRecord->Hdr.Handle = 0;
71 SmbiosRecord->StringCount = 1;
72 OptionalStrStart = (CHAR8 *)(SmbiosRecord + 1);
83 (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord
85 FreePool(SmbiosRecord);
    [all...]
MiscSystemOptionStringFunction.c 42 SMBIOS_TABLE_TYPE12 *SmbiosRecord;
64 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE12) + OptStrLen + 1 + 1);
65 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE12) + OptStrLen + 1 + 1);
67 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_SYSTEM_CONFIGURATION_OPTIONS;
68 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE12);
72 SmbiosRecord->Hdr.Handle = 0;
74 SmbiosRecord->StringCount = 1;
75 OptionalStrStart = (CHAR8*) (SmbiosRecord + 1);
85 (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord
88 FreePool(SmbiosRecord);
    [all...]
MiscOnboardDeviceFunction.c 44 SMBIOS_TABLE_TYPE10 *SmbiosRecord;
74 SmbiosRecord = AllocatePool(sizeof (SMBIOS_TABLE_TYPE10) + DescriptionStrLen + 1 + 1);
75 ZeroMem(SmbiosRecord, sizeof (SMBIOS_TABLE_TYPE10) + DescriptionStrLen + 1 + 1);
77 SmbiosRecord->Hdr.Type = EFI_SMBIOS_TYPE_ONBOARD_DEVICE_INFORMATION;
78 SmbiosRecord->Hdr.Length = sizeof (SMBIOS_TABLE_TYPE10);
82 SmbiosRecord->Hdr.Handle = 0;
94 SmbiosRecord->Device[0].DeviceType = StatusAndType;
95 SmbiosRecord->Device[0].DescriptionString = 1;
96 OptionalStrStart = (CHAR8 *)(SmbiosRecord + 1);
107 (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord
    [all...]

Completed in 304 milliseconds

1 2 3