/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/ |
D | InfLibrarySectionParser.py | 138 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):
|
D | InfDepexSectionParser.py | 78 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/ |
D | Dictionary.py | 58 KeyList = Dict.keys() 59 for Key in KeyList:
|
D | String.py | 211 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]))
|
D | ToolDefClassObject.py | 90 …KeyList = [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]]:
|
D | TargetTxtClassObject.py | 148 KeyList = Dict.keys() 149 for Key in KeyList:
|
D | DecClassObject.py | 99 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:
|
D | InfClassObject.py | 181 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)
|
D | DscClassObject.py | 106 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:
|
D | Misc.py | 1216 def __init__(self, KeyList): argument 1217 for Key in KeyList:
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/ |
D | InfLibraryClassesObject.py | 33 def GetArchModuleType(KeyList): argument 37 for (ArchItem, ModuleItem) in KeyList: 125 def SetLibraryClasses(self, LibContent, KeyList=None): argument 129 (__SupArchList, __SupModuleList) = GetArchModuleType(KeyList)
|
D | InfDepexObject.py | 94 def SetDepex(self, DepexContent, KeyList=None, CommentList=None): argument 95 for KeyItem in KeyList:
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/ |
D | GenInfFile.py | 413 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/ |
D | AuthService.c | 537 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()
|
D | Variable.h | 113 UINT8 KeyList[MAX_KEYDB_SIZE]; // Cached Platform Key list member
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/ |
D | String.py | 138 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/ |
D | IScsiConfig.h | 100 UINT16 *KeyList; member
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
D | GenFds.py | 448 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/ |
D | IScsiConfig.h | 98 UINT16 *KeyList; member
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/TargetTool/ |
D | TargetTool.py | 83 KeyList = self.TargetTxtDictionary.keys() 85 for Key in KeyList:
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
D | AutoGen.py | 2334 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]
|