HomeSort by relevance Sort by last modified time
    Searched refs:ConfigHdr (Results 1 - 10 of 10) sorted by null

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/
UefiIfrForm.c 25 // Fake <ConfigHdr>
917 CHAR16 *ConfigHdr;
938 // Construct <ConfigHdr> : "GUID=...&NAME=...&PATH=..."
940 ConfigHdr = NULL;
943 ConfigHdr,
950 ConfigHdr = EfiLibAllocateZeroPool (StrBufferLen);
952 ConfigHdr,
960 if (EFI_ERROR (Status) || (ConfigHdr == NULL)) {
977 StrBufferLen = EfiStrSize (ConfigHdr);
980 EfiStrCpy (ConfigRequest, ConfigHdr);
    [all...]
UefiIfrLibrary.h 796 original string (e.g. "ABCD"). Config string appears in <ConfigHdr> (i.e.
825 "ABCD" => "0041004200430044". Config string appears in <ConfigHdr> (i.e.
846 IN OUT CHAR16 *ConfigHdr,
855 Construct <ConfigHdr> using routing information GUID/NAME/PATH.
858 ConfigHdr - Pointer to the ConfigHdr string.
859 StrBufferLen - On input: Length in bytes of buffer to hold the ConfigHdr string. Includes tailing '\0' character.
861 If return EFI_SUCCESS, containing length of ConfigHdr string buffer.
869 EFI_BUFFER_TOO_SMALL - The ConfigHdr string buffer is too small.
883 Determines if the Routing data (Guid and Name) is correct in <ConfigHdr>.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
ConfigRouting.c 59 from <PathHdr> of <ConfigHdr>.
109 // The content between 'PATH=' of <ConfigHdr> and '&' of next element
1024 // Get the request ConfigHdr
1030 // Find <ConfigHdr> GUID=...&NAME=...&PATH=...
    [all...]
ConfigKeywordHandler.c 95 // The content between 'PATH=' of <ConfigHdr> and '&' of next element
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DriverSampleDxe/
DriverSample.c 388 @param ConfigHdr The request head info. <ConfigHdr> format.
398 IN EFI_STRING ConfigHdr,
411 NewLen = (NewLen + ((1 + StrLen (ConfigHdr) + 8 + 4) + (8 + 4 + 7 + 4 + 7 + 4)) * 2 + 1) * sizeof (CHAR16);
426 (1 + StrLen (ConfigHdr) + 8 + 4 + 1) * sizeof (CHAR16),
428 ConfigHdr,
445 (1 + StrLen (ConfigHdr) + 8 + 4 + 1) * sizeof (CHAR16),
447 ConfigHdr,
470 @param ConfigRequestHdr The request head info. <ConfigHdr> format.
657 // Allocate and fill a buffer large enough to hold the <ConfigHdr> template
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiHiiLib/
HiiLib.c 40 // <ConfigHdr> Template
688 Allocates and returns a Null-terminated Unicode <ConfigHdr> string using routing
693 The format of a <ConfigHdr> is as follows:
712 @retval Other A pointer to the Null-terminate Unicode <ConfigHdr> string
824 to binary buffer from <ConfigHdr>.
846 EFI_STRING ConfigHdr;
859 ConfigHdr = String;
861 // The content between 'GUID', 'NAME', 'PATH' of <ConfigHdr> and '&' of next element
870 // The data in <ConfigHdr> is encoded as hex UNICODE %02x bytes in the same order
883 TemStr[0] = ConfigHdr[Index];
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
HiiLib.h 276 Allocates and returns a Null-terminated Unicode <ConfigHdr> string using routing
281 The format of a <ConfigHdr> is as follows:
301 @retval Other A pointer to the Null-terminate Unicode <ConfigHdr> string
356 Determines if the routing data specified by GUID and NAME match a <ConfigHdr>.
358 If ConfigHdr is NULL, then ASSERT().
360 @param[in] ConfigHdr Either <ConfigRequest> or <ConfigResp>.
364 @retval TRUE Routing information matches <ConfigHdr>.
365 @retval FALSE Routing information does not match <ConfigHdr>.
371 IN CONST EFI_STRING ConfigHdr,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
Setup.c 650 // Skip <ConfigHdr> and '&' to point to <ConfigBody> when first copy the configbody.
675 BufferSize = (TmpSize + StrLen (BrowserStorage->ConfigHdr) + 2) * sizeof (CHAR16);
680 StrCpyS (ConfigResp, MaxLen, BrowserStorage->ConfigHdr);
    [all...]
IfrParse.c 312 Create ConfigHdr string for a storage.
317 @retval EFI_SUCCESS Initialize ConfigHdr success
335 Storage->ConfigHdr = HiiConstructConfigHdr (
341 if (Storage->ConfigHdr == NULL) {
455 Check whether exist device path info in the ConfigHdr string.
568 Storage->ConfigRequest = AllocateCopyPool (StrSize (Storage->ConfigHdr), Storage->ConfigHdr);
783 ConfigInfo->ConfigRequest = AllocateCopyPool (StrSize (FormsetStorage->ConfigHdr), FormsetStorage->ConfigHdr);
    [all...]
Setup.h 155 CHAR16 *ConfigRequest; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
174 CHAR16 *ConfigHdr; // <ConfigHdr>
176 CHAR16 *ConfigRequest; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
388 CHAR16 *ConfigRequest; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
    [all...]

Completed in 769 milliseconds