Searched refs:Item (Results 51 - 75 of 130) sorted by relevance

123456

/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeNetLib/
H A DDxeNetLib.c1228 NET_MAP_ITEM *Item; local
1235 Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
1237 RemoveEntryList (&Item->Link);
1240 gBS->FreePool (Item);
1246 Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
1248 RemoveEntryList (&Item->Link);
1249 gBS->FreePool (Item);
1319 NET_MAP_ITEM *Item; local
1329 Item = AllocatePool (sizeof (NET_MAP_ITEM));
1331 if (Item
1375 NET_MAP_ITEM *Item; local
1419 NET_MAP_ITEM *Item; local
1488 NET_MAP_ITEM *Item; local
1525 NetMapRemoveItem( IN OUT NET_MAP *Map, IN OUT NET_MAP_ITEM *Item, OUT VOID **Value OPTIONAL ) argument
1570 NET_MAP_ITEM *Item; local
1615 NET_MAP_ITEM *Item; local
1667 NET_MAP_ITEM *Item; local
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
H A DUniClassObject.py70 for Item in Uni:
71 Temp = '%04X' % ord(Item)
257 for Item in self.LanguageDef:
258 if Item[0] == LangName:
279 Item = self.OrderedStringList[FirstLangName][Index]
280 if Item.UseOtherLangDef != '':
281 OtherLang = Item.UseOtherLangDef
284 self.OrderedStringList[LangName].append (StringDefClassObject(Item.StringName, '', Item.Referenced, Item
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
H A DInfBuildOptionSectionParser.py145 for Item in self.LastSectionHeaderContent:
146 LastItem = Item
147 if not (Item[1] == '' or Item[1] == '') and Item[1] not in ArchList:
148 ArchList.append(Item[1])
149 InfSectionObject.SetSupArchList(Item[1])
H A DDecParser.py504 Item = DecIncludeItemObject(StripRoot(self._RawData.PackagePath, Line), self._RawData.PackagePath)
505 self.ItemObject.AddItem(Item, self._RawData.CurrentScope)
506 return Item
542 Item = DecLibraryclassItemObject(TokenList[0], StripRoot(self._RawData.PackagePath, Value),
544 self.ItemObject.AddItem(Item, self._RawData.CurrentScope)
545 return Item
620 Item = DecPcdItemObject(Guid, CName, Data, DataType, Token)
621 self.ItemObject.AddItem(Item, self._RawData.CurrentScope)
622 return Item
687 Item
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
H A DDepexSection.py95 for Item in ExpGuidDict:
96 self.Expression = self.Expression.replace(Item, ExpGuidDict[Item])
H A DCapsule.py186 for Item in self.TokensDict.keys():
188 Item + \
190 self.TokensDict.get(Item) + \
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
H A DInfMisc.py116 for Item in SepcialSectionList:
119 ObjList.append(Item)
123 ObjList.append(Item)
H A DInfPackagesObject.py158 for Item in self.Packages:
159 if Item.GetPackageName() == PackageItemObj.GetPackageName():
160 ItemSupArchList = Item.GetSupArchList()
/device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
H A DSmi.c60 SMI_ENTRY *Item; local
71 Item = CR (Link, SMI_ENTRY, AllEntries, SMI_ENTRY_SIGNATURE);
72 if (CompareGuid (&Item->HandlerType, HandlerType)) {
76 SmiEntry = Item;
H A DHandle.c66 PROTOCOL_ENTRY *Item; local
78 Item = CR(Link, PROTOCOL_ENTRY, AllEntries, PROTOCOL_ENTRY_SIGNATURE);
79 if (CompareGuid (&Item->ProtocolID, Protocol)) {
83 ProtEntry = Item;
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
H A DLongFilePathOs.py57 for Item in uList:
58 List.append(UniToStr(Item))
H A DMigrationUtilities.py360 # Add an Item with specific CPU architecture to section dictionary.
365 # @param Item The Item to be added to section dictionary.
367 def AddToSection(Section, Arch, Item):
369 if Item not in SectionArch:
370 SectionArch.append(Item)
389 Item = Method(Object)
390 if Item == "":
392 Item = " %s" % Item
[all...]
H A DExpression.py50 Item = ''
55 Item += String[i]
56 RetList.append(Item)
57 Item = ''
59 if Item:
60 RetList.append(Item)
61 Item = ''
62 Item += String[i]
64 raise BadExpression(ERR_STRING_TOKEN % Item)
65 if Item
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
H A DDependencyRules.py362 for Item in PomAli.GetPackageDependencyList():
363 if Item.GetPackageFilePath() in DpPackagePathList:
364 Logger.Info(ST.MSG_MODULE_DEPEND_ON % (Path, Item.GetPackageFilePath()))
391 for Item in PomAli.GetPackageDependencyList():
392 if Item.GetPackageFilePath() in DpPackagePathList:
393 Guid, Version = Item.GetGuid(), Item.GetVersion()
395 Logger.Info(ST.MSG_MODULE_DEPEND_ON % (Path, Item.GetPackageFilePath()))
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/
H A DKeyBoard.h260 @param Item Points to the item to be enqueued.
266 IN VOID *Item,
275 @param Item Receives the item.
278 @retval EFI_SUCCESS Item was successfully dequeued.
285 OUT VOID *Item,
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
H A DMetaDataTable.py316 for Item in DataClass.MODEL_LIST:
317 CrossIndex = Item[1]
318 Name = Item[0]
319 Description = Item[0]
334 for Item in self.Cur:
335 CrossIndex = Item[0]
/device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/
H A DConsole.c213 CONST UNICODE_WIDTH_ENTRY *Item; local
215 Item = NULL;
220 Item = &(mUnicodeWidthTable[Index]);
222 if (UnicodeChar <= Item->WChar) {
229 if (UnicodeChar > Item->WChar) {
242 return Item->Width;
/device/linaro/bootloader/edk2/MdePkg/Library/UefiLib/
H A DConsole.c216 CONST UNICODE_WIDTH_ENTRY *Item; local
218 Item = NULL;
223 Item = &(mUnicodeWidthTable[Index]);
225 if (UnicodeChar <= Item->WChar) {
232 if (UnicodeChar > Item->WChar) {
245 return Item->Width;
/device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/
H A DIpSecConfig.c528 VAR_CHECK_ITEM *Item; local
540 Item = mIpSecConfigVarCheckList;
554 for (; Item->VarName != NULL; Item++) {
555 if (StrCmp (((SHELL_PARAM_PACKAGE *) Node)->Name, Item->VarName) == 0) {
558 Attribute1 = Item->Attribute1;
559 Attribute2 = Item->Attribute2;
560 Attribute3 = Item->Attribute3;
561 Attribute4 = Item->Attribute4;
563 Attribute1 &= Item
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
H A DUniClassObject.py108 for Item in Uni:
109 Temp = '%04X' % ord(Item)
350 for Item in self.LanguageDef:
351 if Item[0] == LangName:
372 Item = self.OrderedStringList[FirstLangName][Index]
373 if Item.UseOtherLangDef != '':
374 OtherLang = Item.UseOtherLangDef
377 self.OrderedStringList[LangName].append (StringDefClassObject(Item.StringName,
379 Item.Referenced,
380 Item
[all...]
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
H A DHelp.c35 @param[in] Item the item to insert.
44 IN CONST CHAR16 *Item
55 if (Item == NULL || *Item == CHAR_NULL || StrLen(Item)==0) {
61 SizeOfAddedNameInBytes = StrSize(Item);
78 (CHAR16 *)Item
98 StrCpyS(LexicalSpot, SizeOfAddedNameInBytes/sizeof(CHAR16), Item);
/device/linaro/bootloader/edk2/NetworkPkg/Udp6Dxe/
H A DUdp6Impl.c101 @param[in] Item Pointer to the NET_MAP_ITEM.
107 is not the same as that in the Item if Arg is not
117 IN NET_MAP_ITEM *Item,
876 @param[in] Item Pointer to the NET_MAP_ITEM contain the pointer to
881 one in the Item.
882 @retval EFI_ACCESS_DENIED The Token duplicates with the one in the Item.
889 IN NET_MAP_ITEM *Item,
897 TokenInItem = (EFI_UDP6_COMPLETION_TOKEN *) Item->Key;
955 NET_MAP_ITEM *Item; local
960 Item
887 Udp6TokenExist( IN NET_MAP *Map, IN NET_MAP_ITEM *Item, IN VOID *Context ) argument
1075 Udp6LeaveGroup( IN NET_MAP *Map, IN NET_MAP_ITEM *Item, IN VOID *Arg OPTIONAL ) argument
1131 Udp6CancelTokens( IN NET_MAP *Map, IN NET_MAP_ITEM *Item, IN VOID *Arg OPTIONAL ) argument
1952 NET_MAP_ITEM *Item; local
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
H A DStringFuncs.c145 UINTN Item; local
155 for (Pos = String, Item = 0; Pos < EndOfString; Item++) {
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Config2Impl.c163 @param[in] Item The registered event.
172 IN NET_MAP_ITEM *Item,
176 gBS->SignalEvent ((EFI_EVENT) Item->Key);
714 IP4_CONFIG2_DATA_ITEM *Item; local
723 Item = &Instance->DataItem[Ip4Config2DataTypeDnsServer];
725 OldDns = Item->Data.DnsServers;
727 OldDnsCount = Item->DataSize / sizeof (EFI_IPv4_ADDRESS);
779 if (!OneAdded && (DataSize == Item->DataSize)) {
783 Item->Status = EFI_SUCCESS;
787 if (Item
170 Ip4Config2SignalEvent( IN NET_MAP *Map, IN NET_MAP_ITEM *Item, IN VOID *Arg ) argument
1066 IP4_CONFIG2_DATA_ITEM *Item; local
1747 NET_MAP_ITEM *Item; local
1811 NET_MAP_ITEM *Item; local
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Udp4Dxe/
H A DUdp4Impl.c102 @param[in] Item Pointer to the NET_MAP_ITEM.
104 the token specified by Item is cancelled.
107 is not the same as that in the Item if Arg is not
117 IN NET_MAP_ITEM *Item,
886 @param[in] Item Pointer to the NET_MAP_ITEM contain the pointer to
891 one in the Item.
892 @retval EFI_ACCESS_DENIED The Token duplicates with the one in the Item.
899 IN NET_MAP_ITEM *Item,
907 TokenInItem = (EFI_UDP4_COMPLETION_TOKEN*) Item->Key;
965 NET_MAP_ITEM *Item; local
897 Udp4TokenExist( IN NET_MAP *Map, IN NET_MAP_ITEM *Item, IN VOID *Context ) argument
1084 Udp4LeaveGroup( IN OUT NET_MAP *Map, IN NET_MAP_ITEM *Item, IN VOID *Arg OPTIONAL ) argument
1136 Udp4CancelTokens( IN NET_MAP *Map, IN NET_MAP_ITEM *Item, IN VOID *Arg OPTIONAL ) argument
[all...]

Completed in 404 milliseconds

123456