Home
last modified time | relevance | path

Searched refs:Entry (Results 1 – 25 of 340) sorted by relevance

12345678910>>...14

/device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/Arm/
DEblCmdMmu.c82 MMU_ENTRY Entry; in MmuEntryCreate() local
83 Entry.Level = Level; in MmuEntryCreate()
84 Entry.Value = Table[Index]; in MmuEntryCreate()
85 Entry.Table = Table; in MmuEntryCreate()
86 Entry.Index = Index; in MmuEntryCreate()
87 return Entry; in MmuEntryCreate()
93 IN UINT32 Entry in MmuEntryIsValidAddress() argument
99 if ((Entry & 0x3) == 0) { // Ignored in MmuEntryIsValidAddress()
101 } else if ((Entry & 0x3) == 2) { // Section Type in MmuEntryIsValidAddress()
107 if ((Entry & 0x3) == 0) { // Ignored in MmuEntryIsValidAddress()
[all …]
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/EfiRegTableLib/
DEfiRegTableLib.c58 EFI_REG_TABLE_PCI_WRITE *Entry, in PciWrite()
66 … (EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH) (OPCODE_EXTRA_DATA (Entry->OpCode)), in PciWrite()
67 (UINT64) Entry->PciAddress, in PciWrite()
69 &Entry->Data in PciWrite()
73 if (OPCODE_FLAGS (Entry->OpCode) & OPCODE_FLAG_S3SAVE) { in PciWrite()
75 (EFI_BOOT_SCRIPT_WIDTH) (OPCODE_EXTRA_DATA (Entry->OpCode)), in PciWrite()
76 (UINT64) Entry->PciAddress, in PciWrite()
78 &Entry->Data in PciWrite()
100 EFI_REG_TABLE_PCI_READ_MODIFY_WRITE *Entry, in PciReadModifyWrite()
109 … (EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH) (OPCODE_EXTRA_DATA (Entry->OpCode)), in PciReadModifyWrite()
[all …]
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/HalRuntimeServicesExampleLib/
DVariable.c49 VARIABLE_ARRAY_ENTRY *Entry; in AddEntry() local
65 Entry = mVariableArrayNextFree; in AddEntry()
66 CopyGuid (&Entry->VendorGuid, VendorGuid); in AddEntry()
67 Entry->Attribute = Attributes; in AddEntry()
68 Entry->DataSize = DataSize; in AddEntry()
79 return Entry; in AddEntry()
84 IN VARIABLE_ARRAY_ENTRY *Entry in DeleteEntry() argument
91 Size = StrSize ((CHAR16 *)(Entry + 1)) + sizeof (VARIABLE_ARRAY_ENTRY) + Entry->DataSize; in DeleteEntry()
92 Data = ((UINT8 *)Entry) + Size; in DeleteEntry()
94 CopyMem (Entry, Data, (UINTN)mVariableArrayNextFree - (UINTN)Data); in DeleteEntry()
[all …]
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
DOhciSched.c35 INTERRUPT_CONTEXT_ENTRY *Entry; in OhciAddInterruptContextEntry() local
43 Entry = Ohc->InterruptContextList; in OhciAddInterruptContextEntry()
44 while (Entry->NextEntry != NULL) { in OhciAddInterruptContextEntry()
45 Entry = Entry->NextEntry; in OhciAddInterruptContextEntry()
47 Entry->NextEntry = NewEntry; in OhciAddInterruptContextEntry()
70 IN INTERRUPT_CONTEXT_ENTRY *Entry in OhciFreeInterruptContextEntry() argument
74 if (Entry == NULL) { in OhciFreeInterruptContextEntry()
77 if (Entry->UCBufferMapping != NULL) { in OhciFreeInterruptContextEntry()
78 Ohc->PciIo->Unmap(Ohc->PciIo, Entry->UCBufferMapping); in OhciFreeInterruptContextEntry()
80 if (Entry->UCBuffer != NULL) { in OhciFreeInterruptContextEntry()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/DxeMain/
DDxeProtocolNotify.c90 EFI_CORE_PROTOCOL_NOTIFY_ENTRY *Entry; in CoreAllEfiServicesAvailable() local
92 for (Entry = mArchProtocols; Entry->ProtocolGuid != NULL; Entry++) { in CoreAllEfiServicesAvailable()
93 if (!Entry->Present) { in CoreAllEfiServicesAvailable()
120 EFI_CORE_PROTOCOL_NOTIFY_ENTRY *Entry; in GenericProtocolNotify() local
130 Entry = (EFI_CORE_PROTOCOL_NOTIFY_ENTRY *)Context; in GenericProtocolNotify()
135 Status = CoreLocateProtocol (Entry->ProtocolGuid, Entry->Registration, &Protocol); in GenericProtocolNotify()
143 Entry->Present = TRUE; in GenericProtocolNotify()
149 if (Entry->Protocol != NULL) { in GenericProtocolNotify()
150 *(Entry->Protocol) = Protocol; in GenericProtocolNotify()
157 if (CompareGuid (Entry->ProtocolGuid, &gEfiTimerArchProtocolGuid)) { in GenericProtocolNotify()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
DPage.c100 MEMORY_MAP* Entry; in AllocateMemoryMapEntry() local
135 Entry = CR (mFreeMemoryMapEntryList.ForwardLink, MEMORY_MAP, Link, MEMORY_MAP_SIGNATURE); in AllocateMemoryMapEntry()
136 RemoveEntryList (&Entry->Link); in AllocateMemoryMapEntry()
138 return Entry; in AllocateMemoryMapEntry()
152 MEMORY_MAP *Entry; in CoreFreeMemoryMapStack() local
171 Entry = AllocateMemoryMapEntry (); in CoreFreeMemoryMapStack()
172 ASSERT (Entry); in CoreFreeMemoryMapStack()
181 CopyMem (Entry , &mMapStack[mMapDepth], sizeof (MEMORY_MAP)); in CoreFreeMemoryMapStack()
182 Entry->FromStack = FALSE; in CoreFreeMemoryMapStack()
187 InsertTailList (&mMapStack[mMapDepth].Link, &Entry->Link); in CoreFreeMemoryMapStack()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SmmCommunicationBufferDxe/
DSmmCommunicationBufferDxe.c53 EFI_MEMORY_DESCRIPTOR *Entry; in SmmCommunicationBufferEntryPoint() local
73 Entry = (EFI_MEMORY_DESCRIPTOR *)(PiSmmCommunicationRegionTable + 1); in SmmCommunicationBufferEntryPoint()
74 Entry->Type = EfiConventionalMemory; in SmmCommunicationBufferEntryPoint()
75Entry->PhysicalStart = (EFI_PHYSICAL_ADDRESS)(UINTN)AllocateReservedPages (DEFAULT_COMMON_PI_SMM_C… in SmmCommunicationBufferEntryPoint()
76 ASSERT(Entry->PhysicalStart != 0); in SmmCommunicationBufferEntryPoint()
77 Entry->VirtualStart = 0; in SmmCommunicationBufferEntryPoint()
78 Entry->NumberOfPages = DEFAULT_COMMON_PI_SMM_COMMUNIATION_REGION_PAGES; in SmmCommunicationBufferEntryPoint()
79 Entry->Attribute = 0; in SmmCommunicationBufferEntryPoint()
85 DEBUG ((EFI_D_INFO, "Entry:(0x%x)\n", Entry)); in SmmCommunicationBufferEntryPoint()
86 DEBUG ((EFI_D_INFO, " Type - 0x%x\n", Entry->Type)); in SmmCommunicationBufferEntryPoint()
[all …]
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/HiKeyFastbootDxe/
DHiKeyFastbootDxe.c73 FASTBOOT_PARTITION_LIST *Entry; in FreePartitionList() local
76 Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&mPartitionListHead); in FreePartitionList()
77 while (!IsNull (&mPartitionListHead, &Entry->Link)) { in FreePartitionList()
78 NextEntry = (FASTBOOT_PARTITION_LIST *) GetNextNode (&mPartitionListHead, &Entry->Link); in FreePartitionList()
80 RemoveEntryList (&Entry->Link); in FreePartitionList()
81 FreePool (Entry); in FreePartitionList()
83 Entry = NextEntry; in FreePartitionList()
105 EFI_PARTITION_ENTRY *Entry; in ReadPartitionEntries() local
141 Entry = (EFI_PARTITION_ENTRY *)(Buffer + (2 * BlockSize)); in ReadPartitionEntries()
145 if ((Entry->StartingLBA > EndLBA) && (Entry->EndingLBA <= GptHeader->LastUsableLBA)) { in ReadPartitionEntries()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/
DPage.c139 IN OUT MEMORY_MAP *Entry in RemoveMemoryMapEntry() argument
142 RemoveEntryList (&Entry->Link); in RemoveMemoryMapEntry()
143 Entry->Link.ForwardLink = NULL; in RemoveMemoryMapEntry()
145 if (Entry->FromPages) { in RemoveMemoryMapEntry()
149 InsertTailList (&mFreeMemoryMapEntryList, &Entry->Link); in RemoveMemoryMapEntry()
174 MEMORY_MAP *Entry; in CoreAddRange() local
222 Entry = CR (Link, MEMORY_MAP, Link, MEMORY_MAP_SIGNATURE); in CoreAddRange()
225 if (Entry->Type != Type) { in CoreAddRange()
229 if (Entry->Attribute != Attribute) { in CoreAddRange()
233 if (Entry->End + 1 == Start) { in CoreAddRange()
[all …]
/device/linaro/bootloader/edk2/PcAtChipsetPkg/Library/BaseIoApicLib/
DIoApicLib.c88 IO_APIC_REDIRECTION_TABLE_ENTRY Entry; in IoApicEnableInterrupt() local
94 Entry.Uint32.Low = IoApicRead (IO_APIC_REDIRECTION_TABLE_ENTRY_INDEX + Irq * 2); in IoApicEnableInterrupt()
95 Entry.Bits.Mask = Enable ? 0 : 1; in IoApicEnableInterrupt()
96 IoApicWrite (IO_APIC_REDIRECTION_TABLE_ENTRY_INDEX + Irq * 2, Entry.Uint32.Low); in IoApicEnableInterrupt()
138 IO_APIC_REDIRECTION_TABLE_ENTRY Entry; in IoApicConfigureInterrupt() local
146 Entry.Uint32.Low = IoApicRead (IO_APIC_REDIRECTION_TABLE_ENTRY_INDEX + Irq * 2); in IoApicConfigureInterrupt()
147 Entry.Bits.Vector = (UINT8)Vector; in IoApicConfigureInterrupt()
148 Entry.Bits.DeliveryMode = (UINT32)DeliveryMode; in IoApicConfigureInterrupt()
149 Entry.Bits.DestinationMode = 0; in IoApicConfigureInterrupt()
150 Entry.Bits.Polarity = AssertionLevel ? 0 : 1; in IoApicConfigureInterrupt()
[all …]
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey960/HiKey960FastbootDxe/
DHiKey960FastbootDxe.c74 FASTBOOT_PARTITION_LIST *Entry; in FreePartitionList() local
77 Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&mPartitionListHead); in FreePartitionList()
78 while (!IsNull (&mPartitionListHead, &Entry->Link)) { in FreePartitionList()
79 NextEntry = (FASTBOOT_PARTITION_LIST *) GetNextNode (&mPartitionListHead, &Entry->Link); in FreePartitionList()
81 RemoveEntryList (&Entry->Link); in FreePartitionList()
82 FreePool (Entry); in FreePartitionList()
84 Entry = NextEntry; in FreePartitionList()
102 EFI_PARTITION_ENTRY *Entry; in ReadPartitionEntries() local
141 Entry = (EFI_PARTITION_ENTRY *)(Buffer + (2 * BlockSize)); in ReadPartitionEntries()
145 if ((Entry->StartingLBA > EndLBA) && (Entry->EndingLBA <= GptHeader->LastUsableLBA)) { in ReadPartitionEntries()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
DLinkedList.c139 IN OUT LIST_ENTRY *Entry in GlueInsertHeadList() argument
145 ASSERT (!IsNodeInList (List, Entry)); in GlueInsertHeadList()
147 Entry->ForwardLink = List->ForwardLink; in GlueInsertHeadList()
148 Entry->BackLink = List; in GlueInsertHeadList()
149 Entry->ForwardLink->BackLink = Entry; in GlueInsertHeadList()
150 List->ForwardLink = Entry; in GlueInsertHeadList()
179 IN OUT LIST_ENTRY *Entry in GlueInsertTailList() argument
185 ASSERT (!IsNodeInList (List, Entry)); in GlueInsertTailList()
187 Entry->ForwardLink = List; in GlueInsertTailList()
188 Entry->BackLink = List->BackLink; in GlueInsertTailList()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/OrderedCollectionTest/
DOrderedCollectionTest.c144 ORDERED_COLLECTION_ENTRY *Entry; in CmdForwardEmpty() local
146 Entry = OrderedCollectionMin (Collection); in CmdForwardEmpty()
147 while (Entry != NULL) { in CmdForwardEmpty()
152 Next = OrderedCollectionNext (Entry); in CmdForwardEmpty()
153 OrderedCollectionDelete (Collection, Entry, &Ptr); in CmdForwardEmpty()
159 Entry = Next; in CmdForwardEmpty()
177 ORDERED_COLLECTION_ENTRY *Entry; in CmdBackwardEmpty() local
179 Entry = OrderedCollectionMax (Collection); in CmdBackwardEmpty()
180 while (Entry != NULL) { in CmdBackwardEmpty()
185 Prev = OrderedCollectionPrev (Entry); in CmdBackwardEmpty()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
DLinkedList.c83 EFI_LIST_ENTRY *Entry in RemoveEntryList() argument
106 _ForwardLink = Entry->ForwardLink; in RemoveEntryList()
107 _BackLink = Entry->BackLink; in RemoveEntryList()
112 Entry->ForwardLink = (EFI_LIST_ENTRY *) EFI_BAD_POINTER; in RemoveEntryList()
113 Entry->BackLink = (EFI_LIST_ENTRY *) EFI_BAD_POINTER; in RemoveEntryList()
121 EFI_LIST_ENTRY *Entry in InsertTailList() argument
147 Entry->ForwardLink = _ListHead; in InsertTailList()
148 Entry->BackLink = _BackLink; in InsertTailList()
149 _BackLink->ForwardLink = Entry; in InsertTailList()
150 _ListHead->BackLink = Entry; in InsertTailList()
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dhash.c68 Entry **
75 Entry **table; in newHashTable()
77 table = (Entry **) calloc(size, sizeof(Entry *)); in newHashTable()
90 killHashTable( Entry **table ) in killHashTable()
93 Entry **table; in killHashTable()
101 Entry *
103 hash_add( Entry **table, char *key, Entry *rec ) in hash_add()
106 Entry **table; in hash_add()
108 Entry *rec;
122 Entry *
[all …]
Dhash.h56 } Entry; typedef
64 Entry *hash_get(Entry **, char *),
66 *hash_add(Entry **, char *, Entry *);
68 void killHashTable(Entry **);
71 Entry *hash_get(), **newHashTable(), *hash_add();
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
DLinkedList.c171 IN OUT LIST_ENTRY *Entry in InsertHeadList() argument
177 ASSERT (InternalBaseLibIsNodeInList (ListHead, Entry, FALSE)); in InsertHeadList()
179 Entry->ForwardLink = ListHead->ForwardLink; in InsertHeadList()
180 Entry->BackLink = ListHead; in InsertHeadList()
181 Entry->ForwardLink->BackLink = Entry; in InsertHeadList()
182 ListHead->ForwardLink = Entry; in InsertHeadList()
212 IN OUT LIST_ENTRY *Entry in InsertTailList() argument
218 ASSERT (InternalBaseLibIsNodeInList (ListHead, Entry, FALSE)); in InsertTailList()
220 Entry->ForwardLink = ListHead; in InsertTailList()
221 Entry->BackLink = ListHead->BackLink; in InsertTailList()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
DEhcPeim.h71 #define EFI_LIST_FOR_EACH(Entry, ListHead) \ argument
72 for(Entry = (ListHead)->ForwardLink; Entry != (ListHead); Entry = Entry->ForwardLink)
78 #define EFI_LIST_FOR_EACH_SAFE(Entry, NextEntry, ListHead) \ argument
79 for(Entry = (ListHead)->ForwardLink, NextEntry = Entry->ForwardLink;\
80 Entry != (ListHead); Entry = NextEntry, NextEntry = Entry->ForwardLink)
82 #define EFI_LIST_CONTAINER(Entry, Type, Field) BASE_CR(Entry, Type, Field) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Gcd/
DGcd.c419 IN EFI_GCD_MAP_ENTRY *Entry, in CoreInsertGcdMapEntry() argument
428 if (BaseAddress > Entry->BaseAddress) { in CoreInsertGcdMapEntry()
431 CopyMem (BottomEntry, Entry, sizeof (EFI_GCD_MAP_ENTRY)); in CoreInsertGcdMapEntry()
432 Entry->BaseAddress = BaseAddress; in CoreInsertGcdMapEntry()
437 if ((BaseAddress + Length - 1) < Entry->EndAddress) { in CoreInsertGcdMapEntry()
440 CopyMem (TopEntry, Entry, sizeof (EFI_GCD_MAP_ENTRY)); in CoreInsertGcdMapEntry()
442 Entry->EndAddress = BaseAddress + Length - 1; in CoreInsertGcdMapEntry()
470 EFI_GCD_MAP_ENTRY *Entry; in CoreMergeGcdMapEntry() local
489 Entry = CR (Link, EFI_GCD_MAP_ENTRY, Link, EFI_GCD_MAP_SIGNATURE); in CoreMergeGcdMapEntry()
492 if (Entry->Capabilities != AdjacentEntry->Capabilities) { in CoreMergeGcdMapEntry()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
DEhci.h90 #define EFI_LIST_FOR_EACH(Entry, ListHead) \ argument
91 for(Entry = (ListHead)->ForwardLink; Entry != (ListHead); Entry = Entry->ForwardLink)
97 #define EFI_LIST_FOR_EACH_SAFE(Entry, NextEntry, ListHead) \ argument
98 for(Entry = (ListHead)->ForwardLink, NextEntry = Entry->ForwardLink;\
99 Entry != (ListHead); Entry = NextEntry, NextEntry = Entry->ForwardLink)
101 #define EFI_LIST_CONTAINER(Entry, Type, Field) BASE_CR(Entry, Type, Field) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
DIp4Route.c166 LIST_ENTRY *Entry; in Ip4CleanRouteCache() local
172 NET_LIST_FOR_EACH_SAFE (Entry, Next, &(RtCache->CacheBucket[Index])) { in Ip4CleanRouteCache()
173 RtCacheEntry = NET_LIST_USER_STRUCT (Entry, IP4_ROUTE_CACHE_ENTRY, Link); in Ip4CleanRouteCache()
175 RemoveEntryList (Entry); in Ip4CleanRouteCache()
230 LIST_ENTRY *Entry; in Ip4FreeRouteTable() local
245 NET_LIST_FOR_EACH_SAFE (Entry, Next, &(RtTable->RouteArea[Index])) { in Ip4FreeRouteTable()
246 RtEntry = NET_LIST_USER_STRUCT (Entry, IP4_ROUTE_ENTRY, Link); in Ip4FreeRouteTable()
248 RemoveEntryList (Entry); in Ip4FreeRouteTable()
276 LIST_ENTRY *Entry; in Ip4PurgeRouteCache() local
282 NET_LIST_FOR_EACH_SAFE (Entry, Next, &RtCache->CacheBucket[Index]) { in Ip4PurgeRouteCache()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
DEdbSymbol.c39 EFI_DEBUGGER_SYMBOL_ENTRY *Entry; in EdbLoadSymbolSingleEntry() local
52 Entry = &Object->Entry[Object->EntryCount]; in EdbLoadSymbolSingleEntry()
66 AsciiStrnCpyS (Entry->Name, sizeof(Entry->Name), Name, sizeof(Entry->Name) - 1); in EdbLoadSymbolSingleEntry()
68 AsciiStrnCpyS (Entry->ObjName, sizeof(Entry->ObjName), ObjName, sizeof(Entry->ObjName) - 1); in EdbLoadSymbolSingleEntry()
70 Entry->Rva = Address % EFI_DEBUGGER_DEFAULT_LINK_IMAGEBASE; in EdbLoadSymbolSingleEntry()
71 Entry->Type = Type; in EdbLoadSymbolSingleEntry()
485 EFI_DEBUGGER_SYMBOL_ENTRY *Entry; in EbdFindSymbolAddress() local
516 Entry = Object->Entry; in EbdFindSymbolAddress()
517 for (SubIndex = 0; SubIndex < Object->EntryCount; SubIndex++, Entry++) { in EbdFindSymbolAddress()
518 if (Address != Entry->Rva + Object->BaseAddress) { in EbdFindSymbolAddress()
[all …]
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/
DArmVExpressFastBoot.c57 FASTBOOT_PARTITION_LIST *Entry; in FreePartitionList() local
60 Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&mPartitionListHead); in FreePartitionList()
61 while (!IsNull (&mPartitionListHead, &Entry->Link)) { in FreePartitionList()
62 NextEntry = (FASTBOOT_PARTITION_LIST *) GetNextNode (&mPartitionListHead, &Entry->Link); in FreePartitionList()
64 RemoveEntryList (&Entry->Link); in FreePartitionList()
65 FreePool (Entry); in FreePartitionList()
67 Entry = NextEntry; in FreePartitionList()
163 FASTBOOT_PARTITION_LIST *Entry; in ArmFastbootPlatformInit() local
267 Entry = AllocatePool (sizeof (FASTBOOT_PARTITION_LIST)); in ArmFastbootPlatformInit()
268 if (Entry == NULL) { in ArmFastbootPlatformInit()
[all …]
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
DIp6Route.c130 LIST_ENTRY *Entry; in Ip6FindRouteEntry() local
139 NET_LIST_FOR_EACH (Entry, &RtTable->RouteArea[Index]) { in Ip6FindRouteEntry()
140 RtEntry = NET_LIST_USER_STRUCT (Entry, IP6_ROUTE_ENTRY, Link); in Ip6FindRouteEntry()
236 LIST_ENTRY *Entry; in Ip6FindRouteCache() local
242 NET_LIST_FOR_EACH (Entry, &RtTable->Cache.CacheBucket[Index]) { in Ip6FindRouteCache()
243 RtCacheEntry = NET_LIST_USER_STRUCT (Entry, IP6_ROUTE_CACHE_ENTRY, Link); in Ip6FindRouteCache()
274 LIST_ENTRY *Entry; in Ip6BuildEfiRouteTable() local
305 NET_LIST_FOR_EACH (Entry, &(RouteTable->RouteArea[Index])) { in Ip6BuildEfiRouteTable()
306 RtEntry = NET_LIST_USER_STRUCT (Entry, IP6_ROUTE_ENTRY, Link); in Ip6BuildEfiRouteTable()
373 LIST_ENTRY *Entry; in Ip6CleanRouteTable() local
[all …]
/device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
DDirectoryManage.c36 IN OUT VOID *Entry in FatAccessEntry() argument
48 ((FAT_DIRECTORY_ENTRY *) Entry)->FileName[0] = EMPTY_ENTRY_MARK; in FatAccessEntry()
49 ((FAT_DIRECTORY_ENTRY *) Entry)->Attributes = 0; in FatAccessEntry()
54 return FatAccessOFile (Parent, IoMode, Position, &BufferSize, Entry, NULL); in FatAccessEntry()
87 Status = FatAccessEntry (OFile, WriteData, EntryPos, &DirEnt->Entry); in FatStoreDirEnt()
110 LfnEntry.Checksum = FatCheckSum (DirEnt->Entry.FileName); in FatStoreDirEnt()
180 DirEnt->Entry.FileClusterHigh = (UINT16) (Cluster >> 16); in FatSetDirEntCluster()
181 DirEnt->Entry.FileCluster = (UINT16) Cluster; in FatSetDirEntCluster()
197 OFile->DirEnt->Entry.FileSize = (UINT32) OFile->FileSize; in FatUpdateDirEntClusterSizeInfo()
217 Entry1 = (UINT8 *) &DirEnt1->Entry; in FatCloneDirEnt()
[all …]

12345678910>>...14