Home
last modified time | relevance | path

Searched refs:FieldName (Results 1 – 14 of 14) sorted by relevance

/device/linaro/bootloader/edk2/NetworkPkg/HttpUtilitiesDxe/
DHttpUtilitiesImpl.c68 if (HeaderFields[Index].FieldName != NULL) { in FreeHeaderFields()
69 FreePool (HeaderFields[Index].FieldName); in FreeHeaderFields()
96 IN CHAR8 *FieldName in FindHttpHeader() argument
102 if (AsciiStrCmp (FieldName, HeaderFields[Index].FieldName) == 0) { in FindHttpHeader()
128 IN CHAR8 *FieldName in IsValidHttpHeader() argument
134 if (AsciiStrCmp (FieldName, DeleteList[Index]) == 0) { in IsValidHttpHeader()
158 IN CHAR8 *FieldName, in SetFieldNameAndValue() argument
165 if (HttpHeader->FieldName != NULL) { in SetFieldNameAndValue()
166 FreePool (HttpHeader->FieldName); in SetFieldNameAndValue()
172 FieldNameSize = AsciiStrSize (FieldName); in SetFieldNameAndValue()
[all …]
DHttpUtilitiesProtocol.c125 if (IsValidHttpHeader( DeleteList, DeleteCount, SeedHeaderFields[Index].FieldName)) { in HttpUtilitiesBuild()
128 SeedHeaderFields[Index].FieldName, in HttpUtilitiesBuild()
154 TempHeaderFields[Index].FieldName, in HttpUtilitiesBuild()
165 HttpHeader = FindHttpHeader (NewHeaderFields, NewFieldCount, AppendList[Index]->FieldName); in HttpUtilitiesBuild()
169 AppendList[Index]->FieldName, in HttpUtilitiesBuild()
178 AppendList[Index]->FieldName, in HttpUtilitiesBuild()
194 StrLength = AsciiStrLen (HttpHeader->FieldName); in HttpUtilitiesBuild()
225 StrLength = AsciiStrLen (HttpHeader->FieldName); in HttpUtilitiesBuild()
226 CopyMem (NewMessagePtr, HttpHeader->FieldName, StrLength); in HttpUtilitiesBuild()
304 CHAR8 *FieldName; in HttpUtilitiesParse() local
[all …]
DHttpUtilitiesDxe.h72 IN CHAR8 *FieldName
91 IN CHAR8 *FieldName
110 IN CHAR8 *FieldName,
129 OUT CHAR8 **FieldName,
/device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
DHttpBootSupport.c542 FreePool (HttpIoHeader->Headers[Index].FieldName); in HttpBootFreeHeader()
564 IN CHAR8 *FieldName in HttpBootFindHeader() argument
569 if (HeaderCount == 0 || Headers == NULL || FieldName == NULL) { in HttpBootFindHeader()
577 if (AsciiStriCmp (Headers[Index].FieldName, FieldName) == 0) { in HttpBootFindHeader()
600 IN CHAR8 *FieldName, in HttpBootSetHeader() argument
608 if (HttpIoHeader == NULL || FieldName == NULL || FieldValue == NULL) { in HttpBootSetHeader()
612 Header = HttpBootFindHeader (HttpIoHeader->HeaderCount, HttpIoHeader->Headers, FieldName); in HttpBootSetHeader()
622 StrSize = AsciiStrSize (FieldName); in HttpBootSetHeader()
623 Header->FieldName = AllocatePool (StrSize); in HttpBootSetHeader()
624 if (Header->FieldName == NULL) { in HttpBootSetHeader()
[all …]
DHttpBootSupport.h133 IN CHAR8 *FieldName,
DHttpBootClient.c492 FreePool (Cache->ResponseData->Headers[Index].FieldName); in HttpBootFreeCache()
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DHttp.h220 CHAR8 *FieldName; member
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/
DVfrCompile.g1876 // MyNvStructure.FieldName[4]
2681 INT8 *FieldName,
2698 FieldName - the name of the field within the NV store structure
2699 LineNum2 - line number in the VFR where FieldName is referenced
2721 PrintErrorMessage (LineNum2, FieldName, Msg);
2764 if (strcmp (FieldDef->Name, FieldName) == 0) {
2770 PrintErrorMessage (LineNum2, FieldName, Msg);
2781 PrintErrorMessage (LineNum2, FieldName, "field is not declared as an array");
2785 PrintErrorMessage (LineNum2, FieldName, "array index exceeds declared size of field");
2802 PrintErrorMessage (LineNum2, FieldName, "variables must have the same size");
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/
DDxeHttpLib.c816 IN CHAR8 *FieldName in HttpIoFindHeader() argument
821 if (HeaderCount == 0 || Headers == NULL || FieldName == NULL) { in HttpIoFindHeader()
829 if (AsciiStriCmp (Headers[Index].FieldName, FieldName) == 0) { in HttpIoFindHeader()
/device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/AcpiTables/rtsm_ve-aemv8a/
Dgtdt.asl34 * Format: [ByteLength] FieldName : HexFieldValue
Dapic.asl33 * Format: [ByteLength] FieldName : HexFieldValue
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
Dc.py984 def GetFinalTypeValue(Type, FieldName, TypedefDict, SUDict): argument
1012 Index = Field.rfind(FieldName)
1016 if Index + len(FieldName) == len(Field):
1021 if not Field[Index + len(FieldName)].isalnum():
1044 FieldName = RefList[Index]
1045 FromType = GetFinalTypeValue(Type, FieldName, TypedefDict, SUDict)
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
DVfrUtilityLib.cpp1019 IN INT8 *FieldName, in DataTypeAddField() argument
1031 if (strlen (FieldName) >= MAX_NAME_LEN) { in DataTypeAddField()
1036 if (strcmp (pTmp->mFieldName, FieldName) == 0) { in DataTypeAddField()
1046 strcpy (pNewField->mFieldName, FieldName); in DataTypeAddField()
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
DVfrUtilityLib.cpp1014 IN CHAR8 *FieldName, in DataTypeAddField() argument
1026 if (strlen (FieldName) >= MAX_NAME_LEN) { in DataTypeAddField()
1031 if (strcmp (pTmp->mFieldName, FieldName) == 0) { in DataTypeAddField()
1041 strcpy (pNewField->mFieldName, FieldName); in DataTypeAddField()