/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/XRay/ |
YAMLXRayRecord.h | 44 YAMLXRayFileHeader Header; 64 static void mapping(IO &IO, xray::YAMLXRayFileHeader &Header) { 65 IO.mapRequired("version", Header.Version); 66 IO.mapRequired("type", Header.Type); 67 IO.mapRequired("constant-tsc", Header.ConstantTSC); 68 IO.mapRequired("nonstop-tsc", Header.NonstopTSC); 69 IO.mapRequired("cycle-frequency", Header.CycleFrequency); 101 // A trace file contains two parts, the header and the list of all the 103 IO.mapRequired("header", Trace.Header); [all...] |
/art/libdexfile/dex/ |
compact_dex_file.h | 36 class Header : public DexFile::Header { 38 static const Header* At(const void* at) { 39 return reinterpret_cast<const Header*>(at); 268 const Header& GetHeader() const { 269 return down_cast<const Header&>(DexFile::GetHeader());
|
/device/linaro/bootloader/OpenPlatformPkg/Applications/FirmwareUpdate/ |
FUpdate.c | 134 MV_FIRMWARE_IMAGE_HEADER *Header;
137 Header = (MV_FIRMWARE_IMAGE_HEADER *)ImageHeader;
138 HeaderLength = Header->PrologSize;
139 ChecksumBackup = Header->PrologChecksum;
142 if (Header->Magic != MAIN_HDR_MAGIC) {
143 Print (L"%s: Bad Image magic 0x%08x != 0x%08x\n", CMD_NAME_STRING, Header->Magic, MAIN_HDR_MAGIC);
148 Header->PrologChecksum = 0;
150 Checksum = CalculateSum32 ((UINT32 *)Header, HeaderLength);
157 Header->PrologChecksum = ChecksumBackup;
203 // Read Image header into buffer [all...] |
/device/linaro/bootloader/OpenPlatformPkg/Drivers/Block/ramdisk/ |
ramdisk.h | 48 EFI_DEVICE_PATH Header;
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/AcpiTables/ |
Madt.c | 116 EFI_ACPI_5_1_MULTIPLE_APIC_DESCRIPTION_TABLE_HEADER Header;
310 AcpiMadt.Header.Header.Length = sizeof (EFI_ACPI_5_1_MULTIPLE_APIC_DESCRIPTION_TABLE_HEADER);
323 AcpiMadt.Header.Header.Length += sizeof (EFI_ACPI_5_1_GIC_STRUCTURE);
326 GicD = (EFI_ACPI_5_1_GIC_DISTRIBUTOR_STRUCTURE *)(UINT8 *)((UINTN)&AcpiMadt + (UINTN)AcpiMadt.Header.Header.Length);
328 AcpiMadt.Header.Header.Length += sizeof (EFI_ACPI_5_1_GIC_DISTRIBUTOR_STRUCTURE);
330 GicM = (EFI_ACPI_5_1_GIC_MSI_FRAME_STRUCTURE *)(UINT8 *)((UINTN)&AcpiMadt + (UINTN)AcpiMadt.Header.Header.Length); [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/ |
BasePeCoff.c | 23 VOID *Header;
86 Retrieves the PE or TE Header from a PE/COFF or TE image
92 PeHdr - The buffer in which to return the PE header
94 TeHdr - The buffer in which to return the TE header
98 RETURN_SUCCESS if the PE or TE Header is read,
126 // DOS image header is present, so read the PE header after the DOS image header
131 // Get the PE/COFF Header pointer
136 // Check the PE/COFF Header Signature. If not, then try to get a TE header [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/ |
MdeModuleHii.h | 50 EFI_IFR_OP_HEADER Header;
73 EFI_IFR_OP_HEADER Header;
91 EFI_IFR_OP_HEADER Header;
115 EFI_IFR_OP_HEADER Header;
136 EFI_IFR_OP_HEADER Header;
166 EFI_IFR_OP_HEADER Header;
193 EFI_IFR_OP_HEADER Header;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/ |
EfiFlashMap.h | 97 EFI_HOB_GENERIC_HEADER Header;
|
TianoHii.h | 68 EFI_IFR_OP_HEADER Header;
79 EFI_IFR_OP_HEADER Header;
88 EFI_IFR_OP_HEADER Header;
103 EFI_IFR_OP_HEADER Header;
115 EFI_IFR_OP_HEADER Header;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/ |
AlertStandardFormatTable.h | 34 // Information Record header that appears at the beginning of each record
108 EFI_ACPI_DESCRIPTION_HEADER Header;
|
DMARemappingReportingTable.h | 52 // Definition for DMA Remapping Structure Header
148 EFI_ACPI_DESCRIPTION_HEADER Header;
167 EFI_ACPI_DMAR_DEVICE_SCOPE_ENTRY_STRUCTURE Header;
173 EFI_ACPI_DMAR_HARDWARE_UNIT_DEFINITION_STRUCTURE Header;
179 EFI_ACPI_DMAR_RESERVED_MEMORY_REGION_REPORTING_STRUCTURE Header;
185 EFI_ACPI_DMAR_ROOT_PORT_ATS_CAPABILITY_REPORTING_STRUCTURE Header;
194 EFI_ACPI_DMAR_DESCRIPTION_TABLE Header;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Common/ |
EdkIIGlueDefinitionChangesBase.h | 49 #define GET_GUID_HOB_DATA_SIZE(GuidHob) (((GuidHob)->Header).HobLength - sizeof (EFI_HOB_GUID_TYPE))
56 EFI_IFR_OP_HEADER Header;
66 EFI_IFR_OP_HEADER Header;
71 EFI_IFR_OP_HEADER Header;
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/AbootimgLib/ |
AbootimgLib.c | 62 }, // Header 126 ANDROID_BOOTIMG_HEADER *Header; 128 Header = (ANDROID_BOOTIMG_HEADER *) BootImg; 130 if (AsciiStrnCmp (Header->BootMagic, BOOT_MAGIC, BOOT_MAGIC_LENGTH) != 0) { 134 ASSERT (IS_POWER_OF_2 (Header->PageSize)); 137 *ImgSize = ALIGN_VALUE (Header->KernelSize, Header->PageSize) + 138 ALIGN_VALUE (Header->RamdiskSize, Header->PageSize) + 139 ALIGN_VALUE (Header->SecondStageBootloaderSize, Header->PageSize) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Guid/ |
MdeModuleHii.h | 49 EFI_IFR_OP_HEADER Header;
72 EFI_IFR_OP_HEADER Header;
90 EFI_IFR_OP_HEADER Header;
114 EFI_IFR_OP_HEADER Header;
135 EFI_IFR_OP_HEADER Header;
165 EFI_IFR_OP_HEADER Header;
192 EFI_IFR_OP_HEADER Header;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/RamDiskDxe/ |
RamDiskProtocol.c | 480 // Get a copy of the old NFIT header content.
519 // Move to the header of next NFIT structure.
769 EFI_DEVICE_PATH_PROTOCOL *Header;
781 Header = DevicePath;
786 if ((MEDIA_DEVICE_PATH == Header->Type) &&
787 (MEDIA_RAM_DISK_DP == Header->SubType)) {
788 RamDiskDevNode = (MEDIA_RAM_DISK_DEVICE_PATH *) Header;
793 Header = NextDevicePathNode (Header);
794 } while ((Header->Type != END_DEVICE_PATH_TYPE)); [all...] |
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/ |
DmaRemappingReportingTable.h | 68 /// Definition for DMA Remapping Structure Header
101 EFI_ACPI_DMAR_STRUCTURE_HEADER Header;
132 EFI_ACPI_DMAR_STRUCTURE_HEADER Header;
163 EFI_ACPI_DMAR_STRUCTURE_HEADER Header;
188 EFI_ACPI_DMAR_STRUCTURE_HEADER Header;
209 EFI_ACPI_DMAR_STRUCTURE_HEADER Header;
223 DMA Remapping Reporting Structure Header as defined in section 8.1
224 This header will be followed by list of Remapping Structures listed below
235 EFI_ACPI_DESCRIPTION_HEADER Header;
|
SerialPortConsoleRedirectionTable.h | 37 EFI_ACPI_DESCRIPTION_HEADER Header;
|
WatchdogActionTable.h | 29 EFI_ACPI_DESCRIPTION_HEADER Header;
|
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
BlockIoCrypto.h | 62 /// EFI_BLOCK_IO_CRYPTO_IV_INPUT structure is used as a common header in CryptoIvInput
80 EFI_BLOCK_IO_CRYPTO_IV_INPUT Header;
93 EFI_BLOCK_IO_CRYPTO_IV_INPUT Header;
|
Tcg2Protocol.h | 119 // Size of the event header itself (sizeof(EFI_TCG2_EVENT_HEADER)).
123 // Header version. For this version of this specification, the value shall be 1.
138 // Total size of the event including the Size component, the header and the Event data.
141 EFI_TCG2_EVENT_HEADER Header;
|
TrEEProtocol.h | 106 // Size of the event header itself (sizeof(TrEE_EVENT_HEADER)).
110 // Header version. For this version of this specification, the value shall be 1.
125 // Total size of the event including the Size component, the header and the Event data.
128 TrEE_EVENT_HEADER Header;
|
/device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/ |
UefiDevicePathLib.h | 113 EFI_DEVICE_PATH_PROTOCOL Header;
119 EFI_DEVICE_PATH_PROTOCOL Header;
125 EFI_DEVICE_PATH_PROTOCOL Header;
131 EFI_DEVICE_PATH_PROTOCOL Header;
139 EFI_DEVICE_PATH_PROTOCOL Header;
148 EFI_DEVICE_PATH_PROTOCOL Header;
331 NodeLength and initializes the device path node header with NodeType and NodeSubType.
333 If NodeLength is smaller than a device path header, then NULL is returned.
|
/device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/ |
HttpBootSupport.c | 497 Create a HTTP_IO_HEADER to hold the HTTP header items.
499 @param[in] MaxHeaderCount The maximun number of HTTP header in this holder.
501 @return A pointer of the HTTP header holder or NULL if failed.
529 @param[in] HttpIoHeader Point to the HTTP header holder to be destroyed.
551 Set or update a HTTP header with the field name and corresponding value.
553 @param[in] HttpIoHeader Point to the HTTP header holder.
557 @retval EFI_SUCCESS The HTTP header has been set or updated.
570 EFI_HTTP_HEADER *Header;
578 Header = HttpFindHeader (HttpIoHeader->HeaderCount, HttpIoHeader->Headers, FieldName);
579 if (Header == NULL) { [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/ |
HttpsSupport.c | 815 Receive one TLS PDU. An TLS PDU contains an TLS record header and it's 844 UINT8 *Header; 851 Header = NULL; 862 // Allocate buffer to receive one TLS header. 871 Header = NetbufAllocSpace (PduHdr, Len, NET_BUF_TAIL); 872 if (Header == NULL) { 878 // First step, receive one TLS header. 885 RecordHeader = *(TLS_RECORD_HEADER *) Header; [all...] |
/device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/ |
VirtioGpu.h | 12 This header file is minimal, and only defines the types and macros that are
77 // Common request/response header.
128 VIRTIO_GPU_CONTROL_HEADER Header;
141 VIRTIO_GPU_CONTROL_HEADER Header;
161 VIRTIO_GPU_CONTROL_HEADER Header;
173 VIRTIO_GPU_CONTROL_HEADER Header;
184 VIRTIO_GPU_CONTROL_HEADER Header;
196 VIRTIO_GPU_CONTROL_HEADER Header;
209 VIRTIO_GPU_CONTROL_HEADER Header;
|