HomeSort by relevance Sort by last modified time
    Searched defs:Entry (Results 401 - 425 of 1665) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/DataSink/
DataSink.c 270 nfds_t Entry;
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/
ArmVExpressFastBoot.c 57 FASTBOOT_PARTITION_LIST *Entry;
60 Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&mPartitionListHead);
61 while (!IsNull (&mPartitionListHead, &Entry->Link)) {
62 NextEntry = (FASTBOOT_PARTITION_LIST *) GetNextNode (&mPartitionListHead, &Entry->Link);
64 RemoveEntryList (&Entry->Link);
65 FreePool (Entry);
67 Entry = NextEntry;
91 // Read size of Partition entry and number of entries from GPT header
163 FASTBOOT_PARTITION_LIST *Entry;
204 // Read the GPT partition entry array into memory so we can get the partition names
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/
EblCmdLib.c 75 UINTN Entry;
101 for (Entry = 0; Entry < DebugImageTableHeader->TableSize; Entry++, DebugTable++) {
247 // The entry for EBL is still running so the stop time will be zero. Skip it
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/AndroidFastbootTransportTcpDxe/
FastbootTransportTcp.c 218 // Fatal receive error. Put an entry with NULL in the queue, signifying
470 FASTBOOT_TCP_PACKET_LIST *Entry;
514 Entry = (FASTBOOT_TCP_PACKET_LIST *) GetFirstNode (&mPacketListHead);
515 while (!IsNull (&mPacketListHead, &Entry->Link)) {
516 NextEntry = (FASTBOOT_TCP_PACKET_LIST *) GetNextNode (&mPacketListHead, &Entry->Link);
518 RemoveEntryList (&Entry->Link);
519 if (Entry->Buffer) {
520 FreePool (Entry->Buffer);
522 FreePool (Entry);
524 Entry = NextEntry;
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
ParseUpdateProfile.c 173 @param CommentHead Comment Item head entry.
216 @param SectionHead Section item head entry.
298 Add new section entry and entry value into Section head.
300 @param Buffer Section entry data buffer.
301 @param BufferSize Size of section entry.
302 @param SectionHead Section item head entry.
305 @retval EFI_SUCCESS Section entry is NULL or Section entry is added.
352 // Omit this line if the entry name is null
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaBusDxe/
AtaBus.c 154 LIST_ENTRY *Entry;
169 for(Entry = AtaDevice->AtaSubTaskList.ForwardLink;
170 Entry != (&AtaDevice->AtaSubTaskList);
172 DelEntry = Entry;
173 Entry = Entry->ForwardLink;
184 for(Entry = AtaDevice->AtaTaskList.ForwardLink;
185 Entry != (&AtaDevice->AtaTaskList);
187 DelEntry = Entry;
188 Entry = Entry->ForwardLink;
    [all...]
AtaPassThruExecute.c 605 LIST_ENTRY *Entry;
615 for (Entry = GetFirstNode (List); !IsNull (List, Entry);) {
616 AtaTask = ATA_ASYN_TASK_FROM_ENTRY (Entry);
620 Entry = RemoveEntryList (Entry);
660 LIST_ENTRY *Entry;
716 Entry = GetFirstNode (&AtaDevice->AtaTaskList);
717 AtaTask = ATA_ASYN_TASK_FROM_ENTRY (Entry);
732 RemoveEntryList (Entry);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
EhciSched.c 437 // The entry may have been linked into the frame by early insertation.
539 // Qh is the first entry in the frame
567 LIST_ENTRY *Entry;
586 EFI_LIST_FOR_EACH (Entry, &Urb->Qh->Qtds) {
587 Qtd = EFI_LIST_CONTAINER (Entry, EHC_QTD, QtdList);
758 LIST_ENTRY *Entry;
766 EFI_LIST_FOR_EACH_SAFE (Entry, Next, &Ehc->AsyncIntTransfers) {
767 Urb = EFI_LIST_CONTAINER (Entry, URB, UrbList);
802 LIST_ENTRY *Entry;
806 EFI_LIST_FOR_EACH_SAFE (Entry, Next, &Ehc->AsyncIntTransfers) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/NonDiscoverablePciDeviceDxe/
NonDiscoverablePciDeviceIo.c 782 LIST_ENTRY *Entry;
793 // Find the uncached allocation list entry associated
796 for (Entry = Dev->UncachedAllocationList.ForwardLink;
797 Entry != &Dev->UncachedAllocationList;
798 Entry = Entry->ForwardLink) {
800 Alloc = BASE_CR (Entry, NON_DISCOVERABLE_DEVICE_UNCACHED_ALLOCATION, List);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Page.c 84 Internal function. Deque a descriptor entry from the mFreeMemoryMapEntryList.
100 MEMORY_MAP* Entry;
135 Entry = CR (mFreeMemoryMapEntryList.ForwardLink, MEMORY_MAP, Link, MEMORY_MAP_SIGNATURE);
136 RemoveEntryList (&Entry->Link);
138 return Entry;
152 MEMORY_MAP *Entry;
169 // Deque an memory map entry from mFreeMemoryMapEntryList
171 Entry = AllocateMemoryMapEntry ();
172 ASSERT (Entry);
175 // Update to proper entry
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmBootDescription.c 581 BM_BOOT_DESCRIPTION_ENTRY *Entry;
587 Entry = CR (Link, BM_BOOT_DESCRIPTION_ENTRY, Link, BM_BOOT_DESCRIPTION_ENTRY_SIGNATURE);
588 if (Entry->Handler == Handler) {
593 Entry = AllocatePool (sizeof (BM_BOOT_DESCRIPTION_ENTRY));
594 if (Entry == NULL) {
598 Entry->Signature = BM_BOOT_DESCRIPTION_ENTRY_SIGNATURE;
599 Entry->Handler = Handler;
600 InsertTailList (&mPlatformBootDescriptionHandlers, &Entry->Link);
625 BM_BOOT_DESCRIPTION_ENTRY *Entry;
660 Entry = CR (Link, BM_BOOT_DESCRIPTION_ENTRY, Link, BM_BOOT_DESCRIPTION_ENTRY_SIGNATURE);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/RamDiskDxe/
RamDiskProtocol.c 607 LIST_ENTRY *Entry;
670 EFI_LIST_FOR_EACH (Entry, &RegisteredRamDisks) {
671 RegisteredPrivateData = RAM_DISK_PRIVATE_FROM_THIS (Entry);
764 LIST_ENTRY *Entry;
805 EFI_LIST_FOR_EACH_SAFE (Entry, NextEntry, &RegisteredRamDisks) {
806 PrivateData = RAM_DISK_PRIVATE_FROM_THIS (Entry);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/FvSimpleFileSystemDxe/
FvSimpleFileSystemEntryPoint.c 563 LIST_ENTRY *Entry;
613 for(Entry = Instance->FileInfoHead.ForwardLink;
614 Entry != (&Instance->FileInfoHead);
616 DelEntry = Entry;
617 Entry = Entry->ForwardLink;
647 The user Entry Point for module FvSimpleFileSystem. The user code starts with this function.
652 @retval EFI_SUCCESS The entry point is executed successfully.
653 @retval other Some error occurs when executing this entry point.
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/LoadFileOnFv2/
LoadFileOnFv2.c 172 LIST_ENTRY *Entry;
179 for(Entry = (&mPrivateDataList)->ForwardLink; Entry != (&mPrivateDataList); Entry = Entry->ForwardLink) {
180 PrivateData = LOAD_FILE_ON_FV2_PRIVATE_DATA_FROM_LINK (Entry);
392 Entry point function initializes global variables and installs notifications.
397 @retval EFI_SUCCESS The entry point is executed successfully.
398 @retval other Some error occurs when executing this entry point.
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/ArpDxe/
ArpImpl.c 83 LIST_ENTRY *Entry;
174 // be a deny entry, silently skip the normal process.
182 NET_LIST_FOR_EACH (Entry, &ArpService->ChildrenList) {
186 Instance = NET_LIST_USER_STRUCT (Entry, ARP_INSTANCE_DATA, List);
231 // Update the entry with the new information.
286 // Add this entry into the ResolvedCacheTable
424 LIST_ENTRY *Entry;
437 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &ArpService->PendingRequestTable) {
438 CacheEntry = NET_LIST_USER_STRUCT (Entry, ARP_CACHE_ENTRY, List);
479 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &ArpService->DeniedCacheTable) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Io.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4If.c 404 LIST_ENTRY *Entry;
408 NET_LIST_FOR_EACH_SAFE (Entry, Next, &ArpQue->Frames) {
409 Token = NET_LIST_USER_STRUCT (Entry, IP4_LINK_TX_TOKEN, Link);
412 RemoveEntryList (Entry);
442 LIST_ENTRY *Entry;
450 NET_LIST_FOR_EACH_SAFE (Entry, Next, &Interface->ArpQues) {
451 ArpQue = NET_LIST_USER_STRUCT (Entry, IP4_ARP_QUE, Link);
464 NET_LIST_FOR_EACH_SAFE (Entry, Next, &Interface->SentFrames) {
465 Token = NET_LIST_USER_STRUCT (Entry, IP4_LINK_TX_TOKEN, Link);
817 LIST_ENTRY *Entry;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/MnpDxe/
MnpIo.c 410 LIST_ENTRY *Entry;
415 NET_LIST_FOR_EACH (Entry, &MnpServiceData->ChildrenList) {
416 Instance = NET_LIST_USER_STRUCT (Entry, MNP_INSTANCE_DATA, InstEntry);
467 // Remove this Wrap entry from the list.
510 // Recycle this OldRxDataWrap, this entry will be removed by the callee.
552 LIST_ENTRY *Entry;
587 NET_LIST_FOR_EACH (Entry, &Instance->GroupCtrlBlkList) {
589 GroupCtrlBlk = NET_LIST_USER_STRUCT (Entry, MNP_GROUP_CONTROL_BLOCK, CtrlBlkEntry);
634 LIST_ENTRY *Entry;
669 NET_LIST_FOR_EACH (Entry, &MnpDeviceData->GroupAddressList) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Misc.c 188 LIST_ENTRY *Entry;
197 NET_LIST_FOR_EACH (Entry, &mTcpListenQue) {
198 Node = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
253 LIST_ENTRY *Entry;
260 NET_LIST_FOR_EACH (Entry, &mTcpListenQue) {
261 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
270 NET_LIST_FOR_EACH (Entry, &mTcpRunQue) {
271 Tcb = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
308 LIST_ENTRY *Entry;
320 NET_LIST_FOR_EACH (Entry, &mTcpRunQue) {
    [all...]
Tcp4Output.c 155 LIST_ENTRY *Entry;
162 Entry = Tcb->SndQue.BackLink;
163 Nbuf = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
1179 LIST_ENTRY *Entry;
1189 Entry = Head->ForwardLink;
1190 Nbuf = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
1193 NET_LIST_FOR_EACH (Entry, Head) {
1194 Nbuf = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/EmuRuntimeDxe/
EmuVariable.c 305 VARIABLE_INFO_ENTRY *Entry;
316 // on the first call allocate a entry and place a pointer to it in
332 for (Entry = gVariableInfo; Entry != NULL; Entry = Entry->Next) {
333 if (CompareGuid (VendorGuid, &Entry->VendorGuid)) {
334 if (StrCmp (VariableName, Entry->Name) == 0) {
336 Entry->ReadCount++;
339 Entry->WriteCount++;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Application/Ping6/
Ping6.c 190 LIST_ENTRY *Entry;
193 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Private->TxList) {
194 TxInfo = BASE_CR (Entry, PING6_ICMP6_TX_INFO, Link);
526 LIST_ENTRY *Entry;
547 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Private->TxList) {
548 TxInfo = BASE_CR (Entry, PING6_ICMP6_TX_INFO, Link);
864 LIST_ENTRY *Entry;
1002 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Private->TxList) {
1003 TxInfo = BASE_CR (Entry, PING6_ICMP6_TX_INFO, Link);
1034 This is the declaration of an EFI image entry point. This entry point is
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
DnsDriver.c 136 @param[in] Entry The entry to be removed.
139 @retval EFI_SUCCESS The entry has been removed successfully.
140 @retval Others Fail to remove the entry.
146 IN LIST_ENTRY *Entry,
155 if (Entry == NULL || Context == NULL) {
159 Instance = NET_LIST_USER_STRUCT_S (Entry, DNS_INSTANCE, Link, DNS_INSTANCE_SIGNATURE);
352 LIST_ENTRY *Entry;
380 Entry = NetListRemoveHead (&mDriverData->Dns4CacheList);
381 ItemCache4 = NET_LIST_USER_STRUCT (Entry, DNS4_CACHE, AllCacheLink);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootClient.c 497 LIST_ENTRY *Entry;
528 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Cache->EntityDataList) {
529 EntityData = NET_LIST_USER_STRUCT (Entry, HTTP_BOOT_ENTITY_DATA, Link);
552 LIST_ENTRY *Entry;
556 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Private->CacheList) {
557 Cache = NET_LIST_USER_STRUCT (Entry, HTTP_BOOT_CACHE_CONTENT, Link);
590 LIST_ENTRY *Entry;
600 NET_LIST_FOR_EACH (Entry, &Private->CacheList) {
601 Cache = NET_LIST_USER_STRUCT (Entry, HTTP_BOOT_CACHE_CONTENT, Link);
729 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small to read the current directory entry.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Common.c 42 LIST_ENTRY *Entry;
77 NET_LIST_FOR_EACH (Entry, &IpSb->DefaultInterface->AddressList) {
78 AddrInfo = NET_LIST_USER_STRUCT_S (Entry, IP6_ADDRESS_INFO, Link, IP6_ADDR_INFO_SIGNATURE);
334 @param[in] Entry The entry to be removed.
337 @retval EFI_SUCCESS The entry has been removed successfully.
338 @retval Others Fail to remove the entry.
344 IN LIST_ENTRY *Entry,
352 Instance = NET_LIST_USER_STRUCT_S (Entry, IP6_PROTOCOL, Link, IP6_PROTOCOL_SIGNATURE);
426 LIST_ENTRY *Entry;
    [all...]

Completed in 988 milliseconds

<<11121314151617181920>>