/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/Hii/ |
Hii.h | 105 EFI_HII_PACK_HEADER Header;
109 EFI_HII_PACK_HEADER Header; // Must be filled in
123 EFI_HII_PACK_HEADER Header;
138 EFI_HII_PACK_HEADER Header;
207 EFI_HII_PACK_HEADER Header;
219 // We use this one to get the real size of the header
222 EFI_HII_PACK_HEADER Header;
250 // A font list consists of a font header followed by a series
254 EFI_HII_PACK_HEADER Header;
261 // is variable length, and not really part of the header. To [all...] |
/device/linaro/bootloader/edk2/IntelFspPkg/FspSecCore/Ia32/ |
FspHelper.s | 20 # from the FSP Info header.
32 # This function gets the FSP Info Header using relative addressing and returns the FSP Base from the header structure
54 # Returns FSP Info Header.
56 # This function gets the FSP Info Header using relative addressing and returns it
|
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Hob/ |
Hob.c | 150 Hob->Header.HobType = EFI_HOB_TYPE_HANDOFF;
151 Hob->Header.HobLength = (UINT16) sizeof (EFI_HOB_HANDOFF_INFO_TABLE);
152 Hob->Header.Reserved = 0;
|
/device/linaro/bootloader/edk2/SecurityPkg/Library/DxeTpm2MeasureBootLib/ |
DxeTpm2MeasureBootLib.c | 160 // Read the EFI Partition Table Header
174 DEBUG ((EFI_D_ERROR, "Failed to Read Partition Table Header!\n"));
224 Tcg2Event->Header.HeaderSize = sizeof(EFI_TCG2_EVENT_HEADER);
225 Tcg2Event->Header.HeaderVersion = EFI_TCG2_EVENT_HEADER_VERSION;
226 Tcg2Event->Header.PCRIndex = 5;
227 Tcg2Event->Header.EventType = EV_EFI_GPT_EVENT;
325 Tcg2Event->Header.HeaderSize = sizeof(EFI_TCG2_EVENT_HEADER);
326 Tcg2Event->Header.HeaderVersion = EFI_TCG2_EVENT_HEADER_VERSION;
331 Tcg2Event->Header.EventType = EV_EFI_BOOT_SERVICES_APPLICATION;
332 Tcg2Event->Header.PCRIndex = 4; [all...] |
/external/llvm/lib/ProfileData/ |
InstrProfReader.cpp | 115 // Read the profile variant flag from the header: ":FE" means this is a FE 267 if (DataBuffer->getBufferSize() < sizeof(RawInstrProf::Header)) 269 auto *Header = reinterpret_cast<const RawInstrProf::Header *>( 271 ShouldSwapBytes = Header->Magic != RawInstrProf::getMagic<IntPtrT>(); 272 return readHeader(*Header); 284 // If there isn't enough space for another header, this is probably just 286 if (CurrentPos + sizeof(RawInstrProf::Header) > End) 291 // The magic should have the same byte order as in the previous header. 296 // There's another profile to read, so we need to process the header [all...] |
/external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/ |
OkApacheClientTest.java | 14 import org.apache.http.Header; 80 Header[] headers1 = response1.getHeaders("Foo"); 86 Header[] headers2 = response2.getHeaders("Foo"); 158 Header[] headers1 = response1.getHeaders("Content-Type"); 166 Header[] headers2 = response2.getHeaders("Content-Type"); 174 Header[] headers3 = response3.getHeaders("Content-Type"); 198 Header[] encodingHeaders = response.getHeaders("Content-Encoding"); 219 Header[] encodingHeaders = response.getHeaders("Content-Encoding"); 225 Header[] typeHeaders = response.getHeaders("Content-Type"); 244 // Expecting transparent gzip response by not adding header "Accept-encoding: gzip [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
Interval.h | 15 // 1. The header node of an interval dominates all of the elements of the 35 /// header) 38 /// HeaderNode - The header BasicBlock, which dominates all BasicBlocks in this 47 inline Interval(BasicBlock *Header) : HeaderNode(Header) { 48 Nodes.push_back(Header); 62 /// These nodes necessarily must be header nodes for other intervals. 66 /// Predecessors - List of BasicBlocks that have this Interval's header block 90 /// same partition, because of this, all we have to check is the header node
|
/frameworks/base/core/jni/ |
android_ddm_DdmHandleNativeHeap.cpp | 41 struct Header { 70 * copy them into a byte[] with a "struct Header" that holds data offsets, 74 Header header; local 75 memset(&header, 0, sizeof(header)); 79 header.mapSize = maps.size(); 82 get_malloc_leak_info(&allocBytes, &header.allocSize, &header.allocInfoSize, 83 &header.totalMemory, &header.backtraceSize) [all...] |
/frameworks/minikin/include/minikin/ |
Hyphenator.h | 115 // hyb file header; implementation details are in the .cpp file 116 struct Header; 165 const Header* getHeader() const { 166 return reinterpret_cast<const Header*>(patternData);
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
Header.java | 41 * The header of an entity (see RFC 2045). 44 * @version $Id: Header.java,v 1.3 2004/10/04 15:36:44 ntherning Exp $ 46 public class Header { 51 * Creates a new empty <code>Header</code>. 53 public Header() { 57 * Creates a new <code>Header</code> from the specified stream. 59 * @param is the stream to read the header from. 61 public Header(InputStream is) throws IOException { 92 * Gets the fields of this header. The returned list will not be 103 * such fields defined in this header the first one will be returned [all...] |
/prebuilts/go/darwin-x86/src/net/http/ |
example_test.go | 100 w.Header().Set("Trailer", "AtEnd1, AtEnd2") 101 w.Header().Add("Trailer", "AtEnd3") 103 w.Header().Set("Content-Type", "text/plain; charset=utf-8") // normal header 106 w.Header().Set("AtEnd1", "value 1") 108 w.Header().Set("AtEnd2", "value 2") 109 w.Header().Set("AtEnd3", "value 3") // These will appear as trailers.
|
/prebuilts/go/linux-x86/src/net/http/ |
example_test.go | 100 w.Header().Set("Trailer", "AtEnd1, AtEnd2") 101 w.Header().Add("Trailer", "AtEnd3") 103 w.Header().Set("Content-Type", "text/plain; charset=utf-8") // normal header 106 w.Header().Set("AtEnd1", "value 1") 108 w.Header().Set("AtEnd2", "value 2") 109 w.Header().Set("AtEnd3", "value 3") // These will appear as trailers.
|
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/ |
Payload.c | 36 SA Payload header.
76 SaData->SaHeader.Header.NextPayload = NextPayload;
87 except the payload header.
90 of Nonce Payload header.
124 Nonce->Header.NextPayload = NextPayload;
125 Nonce->Header.PayloadLength = (UINT16) Size;
142 Exchange Payload header.
185 Ke->Header.NextPayload = NextPayload;
186 Ke->Header.PayloadLength = (UINT16) KeSize;
208 of ID Payload header. [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/ |
HiiPack.c | 409 // Save a copy of the data table header
481 // Create and write the output HII export header
492 Error (NULL, 0, 0, OutputFileName, "failed to write HII export table header to output file");
502 // Write a data table header to the output file. We'll rewind the file and
513 Error (NULL, 0, 0, OutputFileName, "failed to write HII data table header to output file");
540 TempDataTable->DataTableHeader.DataTableSize += IfrPack->Header.Length;
541 if (fwrite ((void *) IfrPack, IfrPack->Header.Length, 1, OutFptr) != 1) {
548 if (IfrPack->Header.Length != sizeof (EMPTY_FORMSET_PACK)) {
560 ((VarPack->Header.Length - sizeof (EFI_HII_VARIABLE_PACK) - VarPack->VariableNameLength) != 0)
570 TempDataTable->DataTableHeader.DataTableSize += VarPack->Header.Length; [all...] |
/art/dexlayout/ |
dexlayout.h | 16 * Header file of the dexlayout utility. 74 dex_ir::Header* 75 header = nullptr) 76 : options_(options), info_(info), out_file_(out_file), header_(header) { } 81 dex_ir::Header* GetHeader() const { return header_; } 82 void SetHeader(dex_ir::Header* header) { header_ = header; } 129 dex_ir::Header* header_;
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/Juno/AcpiTables/ |
Madt.aslc | 29 EFI_ACPI_5_0_MULTIPLE_APIC_DESCRIPTION_TABLE_HEADER Header;
71 EFI_ACPI_5_0_MULTIPLE_APIC_DESCRIPTION_TABLE_HEADER Header;
|
/device/linaro/bootloader/edk2/ArmPkg/Include/Guid/ |
ArmMpCoreInfo.h | 47 ARM_PROCESSOR_TABLE_HEADER Header;
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/AcpiTables/ |
Madt.aslc | 29 EFI_ACPI_5_0_MULTIPLE_APIC_DESCRIPTION_TABLE_HEADER Header;
71 EFI_ACPI_5_0_MULTIPLE_APIC_DESCRIPTION_TABLE_HEADER Header;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/AcpiTable/ |
AcpiTable.h | 44 EFI_ACPI_DESCRIPTION_HEADER Header;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/ |
WatchdogDescriptionTable.h | 39 EFI_ACPI_DESCRIPTION_HEADER Header;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePeCoffGetEntryPointLib/ |
PeCoffGetEntryPoint.c | 50 EFI_IMAGE_OPTIONAL_HEADER_PTR_UNION Header;
58 // DOS image header is present, so read the PE header after the DOS image header.
60 Header.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)((UINTN) Pe32Data + (UINTN) ((DosHeader->e_lfanew) & 0x0ffff));
63 // DOS image header is not present, so PE header is at the image base.
65 Header.Pe32 = (EFI_IMAGE_NT_HEADERS32 *)Pe32Data;
72 *EntryPoint = (VOID *)((UINTN)Pe32Data + (UINTN)(Header.Pe32->OptionalHeader.AddressOfEntryPoint & 0x0ffffffff));
156 // DOS image header is present, so read the PE header after the DOS image header. [all...] |
/device/linaro/bootloader/edk2/EmulatorPkg/Include/Library/ |
SmbiosLib.h | 151 @param[in] Header SMBIOS record that contains the string. 160 IN SMBIOS_STRUCTURE *Header,
|
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/ |
DebugPort2Table.h | 61 EFI_ACPI_DESCRIPTION_HEADER Header;
|
SerialPortConsoleRedirectionTable.h | 36 EFI_ACPI_DESCRIPTION_HEADER Header;
|
/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 Find a specified header field according to the field name.
553 @param[in] HeaderCount Number of HTTP header structures in Headers list.
557 @return Pointer to the found header or NULL.
585 Set or update a HTTP header with the field name and corresponding value.
587 @param[in] HttpIoHeader Point to the HTTP header holder.
591 @retval EFI_SUCCESS The HTTP header has been set or updated. [all...] |