Home
last modified time | relevance | path

Searched refs:KeyList (Results 1 – 21 of 21) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
DInfLibrarySectionParser.py138 KeyList = []
140 if (Item[1], Item[2]) not in KeyList:
141 KeyList.append((Item[1], Item[2]))
143 if not InfSectionObject.SetLibraryClasses(LibraryList, KeyList=KeyList):
192 KeyList = []
195 if (Item[1], Item[2]) not in KeyList:
196 KeyList.append((Item[1], Item[2]))
198 if not InfSectionObject.SetLibraryClasses(LibraryList, KeyList=KeyList):
DInfDepexSectionParser.py78 KeyList = []
82 if (Item[1], Item[2], Item[3]) not in KeyList:
83 KeyList.append((Item[1], Item[2], Item[3]))
99 … if not InfSectionObject.SetDepex(DepexContent, KeyList = KeyList, CommentList = NewCommentList):
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DDictionary.py58 KeyList = Dict.keys()
59 for Key in KeyList:
DString.py211 KeyList = Key.split(DataType.TAB_SPLIT)
215 KeyList.append('')
219 KeyList.append('')
221 KeyValue = KeyList[0]
222 if KeyList[1] != '':
223 KeyValue = KeyValue + DataType.TAB_SPLIT + KeyList[1]
225 ReturnValue.append(GetSplitValueList(KeyList[2]))
DToolDefClassObject.py90KeyList = [TAB_TOD_DEFINES_TARGET, TAB_TOD_DEFINES_TOOL_CHAIN_TAG, TAB_TOD_DEFINES_TARGET_ARCH, TA…
95 for String in self.ToolsDefTxtDatabase[KeyList[Index]]:
102 elif List[Index] not in self.ToolsDefTxtDatabase[KeyList[Index]]:
DTargetTxtClassObject.py148 KeyList = Dict.keys()
149 for Key in KeyList:
DDecClassObject.py99 self.KeyList = [
107 self.KeyList = map(lambda c: c.upper(), self.KeyList)
113 for Key in self.KeyList:
211 if CurrentSection.upper() not in self.KeyList:
DInfClassObject.py181 self.KeyList = [
190 self.KeyList = map(lambda c: c.upper(), self.KeyList)
196 for Key in self.KeyList:
402 if CurrentSection.upper() not in self.KeyList:
765 KeyList = Key[0].split(DataType.TAB_VALUE_SPLIT)
DDscClassObject.py106 self.KeyList = [
119 self.KeyList = map(lambda c: c.upper(), self.KeyList)
1097 if CurrentSection.upper() not in self.KeyList:
1371 for Key in self.KeyList:
DMisc.py1216 def __init__(self, KeyList): argument
1217 for Key in KeyList:
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
DInfLibraryClassesObject.py33 def GetArchModuleType(KeyList): argument
37 for (ArchItem, ModuleItem) in KeyList:
125 def SetLibraryClasses(self, LibContent, KeyList=None): argument
129 (__SupArchList, __SupModuleList) = GetArchModuleType(KeyList)
DInfDepexObject.py94 def SetDepex(self, DepexContent, KeyList=None, CommentList=None): argument
95 for KeyItem in KeyList:
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/
DGenInfFile.py413 KeyList = []
415 KeyList = [SortedArch]
420 KeyList = [SortedArch + '.' + ModuleString]
422 KeyList = [Arch + '.' + ModuleString for Arch in ArchList]
423 for Key in KeyList:
540 KeyList = []
544 KeyList = SupArchList
548 KeyList.append(ConvertArchForInstall(Arch) + '.' + ModuleType)
549 for Key in KeyList:
576 KeyList = []
[all …]
/device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
DAuthService.c537 ZeroMem (Global->KeyList, MAX_KEYDB_SIZE); in ProcessVarWithPk()
543 (CHAR16 *) Global->KeyList in ProcessVarWithPk()
546 OldPkList = (EFI_SIGNATURE_LIST *) Global->KeyList; in ProcessVarWithPk()
670 ZeroMem (Global->KeyList, MAX_KEYDB_SIZE); in ProcessVarWithKek()
676 (CHAR16 *) Global->KeyList in ProcessVarWithKek()
682 KekList = (EFI_SIGNATURE_LIST *) Global->KeyList; in ProcessVarWithKek()
DVariable.h113 UINT8 KeyList[MAX_KEYDB_SIZE]; // Cached Platform Key list member
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
DString.py138 KeyList = Key.split(DataType.TAB_SPLIT)
142 KeyList.append('')
146 KeyList.append('')
148 KeyValue = KeyList[0]
149 if KeyList[1] != '':
150 KeyValue = KeyValue + DataType.TAB_SPLIT + KeyList[1]
152 ReturnValue.append(GetSplitValueList(KeyList[2]))
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
DIScsiConfig.h100 UINT16 *KeyList; member
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DGenFds.py448 KeyList = ToolDef[0].split('_')
449 Key = KeyList[0] + \
451 KeyList[1] + \
453 KeyList[2]
454 if Key in KeyStringList and KeyList[4] == 'GUID':
458 KeyList[3] + \
464 KeyList[3] + \
/device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
DIScsiConfig.h98 UINT16 *KeyList; member
/device/linaro/bootloader/edk2/BaseTools/Source/Python/TargetTool/
DTargetTool.py83 KeyList = self.TargetTxtDictionary.keys()
85 for Key in KeyList:
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
DAutoGen.py2334 KeyList = OverrideList.keys()
2335 for Index in range(len(KeyList)):
2336 NowKey = KeyList[Index]
2338 for Index1 in range(len(KeyList) - Index - 1):
2339 NextKey = KeyList[Index1 + Index + 1]