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

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
ParseUpdateProfile.c 230 SECTION_ITEM *SectionItem;
268 SectionItem = AllocatePool (sizeof (SECTION_ITEM));
269 if (SectionItem == NULL) {
273 SectionItem->ptrSection = NULL;
274 SectionItem->SecNameLen = Length;
275 SectionItem->ptrEntry = NULL;
276 SectionItem->ptrValue = NULL;
277 SectionItem->ptrNext = *SectionHead;
278 *SectionHead = SectionItem;
283 SectionItem->ptrSection = AllocatePool (Length + 1);
    [all...]
  /device/linaro/bootloader/edk2/SignedCapsulePkg/Library/IniParsingLib/
IniParsingLib.c 538 SECTION_ITEM *SectionItem;
586 SectionItem = AllocatePool (sizeof (SECTION_ITEM));
587 if (SectionItem == NULL) {
591 SectionItem->PtrSection = NULL;
592 SectionItem->SecNameLen = Length;
593 SectionItem->PtrEntry = NULL;
594 SectionItem->PtrValue = NULL;
595 SectionItem->PtrNext = *SectionHead;
596 *SectionHead = SectionItem;
601 SectionItem->PtrSection = AllocatePool (Length + 1);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfParser.py 431 for SectionItem in self.SectionHeaderContent:
437 if SectionItem[0].strip().upper() == DT.TAB_INF_FIXED_PCD.upper() or \
438 SectionItem[0].strip().upper() == DT.TAB_INF_PATCH_PCD.upper() or \
439 SectionItem[0].strip().upper() == DT.TAB_INF_PCD_EX.upper() or \
440 SectionItem[0].strip().upper() == DT.TAB_INF_PCD.upper() or \
441 SectionItem[0].strip().upper() == DT.TAB_INF_FEATURE_PCD.upper():
442 ArchList = GetSplitValueList(SectionItem[1].strip(), ' ')
444 ArchList = [SectionItem[1].strip()]
448 (SectionItem[0].strip().upper() != DT.TAB_DEPEX.upper()) and \
449 (SectionItem[0].strip().upper() != DT.TAB_USER_EXTENSIONS.upper()) and \
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Parsing.py     [all...]
DscClassObject.py     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Parsing.py 756 for SectionItem in SectionItemList:
757 LineValue, StartLine, Comment = SectionItem[0], \
758 SectionItem[1], SectionItem[2]
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/
GenDecFile.py 168 SectionItem = TAB_COMMENT_SPLIT + TAB_SPACE_SPLIT + TAB_SPACE_SPLIT + \
171 Content += SectionItem

Completed in 1844 milliseconds