Home
last modified time | relevance | path

Searched refs:Next (Results 1 – 25 of 149) sorted by relevance

123456

/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformDxe/Observable/
DObservable.c104 Head = Head->Next; in DeleteSubscriber()
125 if (Head->Next) { in DeleteAllSubscribers()
129 Head->Next = DeleteAllSubscribers(Head->Next); in DeleteAllSubscribers()
158 Head = Head->Next; in DeleteObservable()
180 if (Head->Next) { in DeleteAllObservables()
184 Head->Next = DeleteAllObservables(Head->Next); in DeleteAllObservables()
232 Head->Next = FindAndDeleteObservable(Head->Next, ReferenceGuid); in FindAndDeleteObservable()
265 Head->Next = _FindAndDeleteSubscriber(Head->Next, CallbackInterface); in _FindAndDeleteSubscriber()
303 Head->Next = FindAndDeleteSubscriber(Head->Next, ReferenceGuid, CallbackInterface); in FindAndDeleteSubscriber()
360 for (TempTree = mObservableDb; TempTree != NULL; TempTree = TempTree->Next) { in Subscribe()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
DMultiThread.c74 NewBuildItem->Next = *BuildList; in AddBuildItem()
117 NewSourceFile->Next = BuildItem->SourceFileList; in AddSourceFile()
162 TempBuildItem = TempBuildItem->Next; in AddDependency()
189 NewDependency->Next = BuildItem->DependencyList; in AddDependency()
232 TempSourceFile = TempSourceFile->Next; in FreeBuildList()
242 TempDependency = TempDependency->Next; in FreeBuildList()
247 TempBuildItem = TempBuildItem->Next; in FreeBuildList()
291 while (TempComponents->Next != NULL) { in AddComponentsItem()
292 TempComponents = TempComponents->Next; in AddComponentsItem()
294 TempComponents->Next = NewComponents; in AddComponentsItem()
[all …]
DFWVolume.c48 struct _FV_LIST *Next; member
63 struct _FILE_LIST *Next; member
75 struct _LINKED_LIST *Next; member
398 Ptr = Ptr->Next; in CFVAddFVFile()
486 mLastFile->Next = Ptr; in CFVAddFVFile()
518 mFVListLast = mFVList->Next; in CFVDestructor()
530 FILE_LIST *Next; in CFVFreeFileList() local
553 Next = mFileList->Next; in CFVFreeFileList()
555 mFileList = Next; in CFVFreeFileList()
637 for (FileListPtr = mFileList; FileListPtr != NULL; FileListPtr = FileListPtr->Next) { in CFVWriteInfFiles()
[all …]
DDscFile.c109 DSC->CurrentLine = DSC->CurrentLine->Next; in DSCFileGetLine()
213 DSC->LastFileName->Next = NewDscFileName; in DSCParseInclude()
285 DSC->LastLine->Next = NewLine; in DSCParseInclude()
354 DSC->LastSection->Next = NewSect; in DSCParseInclude()
406 TempSect = CurrSect->Next; in DSCParseInclude()
427 TempSect = TempSect->Next; in DSCParseInclude()
430 CurrSect = CurrSect->Next; in DSCParseInclude()
451 NextSection = DSC->Sections->Next; in DSCFileFree()
461 NextLine = DSC->Lines->Next; in DSCFileFree()
468 NextName = DSC->FileName->Next; in DSCFileFree()
[all …]
DMultiThread.h34 BUILD_ITEM *Next; member
48 SOURCE_FILE_ITEM *Next; member
56 DEPENDENCY_ITEM *Next; member
64 COMPONENTS_ITEM *Next; member
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
DIp4Option.c130 UINT32 Next; in Ip4CopyOption() local
137 Next = 0; in Ip4CopyOption()
148 OptBuf[Next] = IP4_OPTION_NOP; in Ip4CopyOption()
149 Next++; in Ip4CopyOption()
163 CopyMem (OptBuf + Next, Option + Cur, Len); in Ip4CopyOption()
164 Next += Len; in Ip4CopyOption()
174 if (Next == 0) { in Ip4CopyOption()
183 if ((Next % 4) != 0) { in Ip4CopyOption()
184 OptBuf[Next] = IP4_OPTION_EOP; in Ip4CopyOption()
185 Next++; in Ip4CopyOption()
[all …]
DIp4Route.c167 LIST_ENTRY *Next; in Ip4CleanRouteCache() local
172 NET_LIST_FOR_EACH_SAFE (Entry, Next, &(RtCache->CacheBucket[Index])) { in Ip4CleanRouteCache()
211 RtTable->Next = NULL; in Ip4CreateRouteTable()
231 LIST_ENTRY *Next; in Ip4FreeRouteTable() local
245 NET_LIST_FOR_EACH_SAFE (Entry, Next, &(RtTable->RouteArea[Index])) { in Ip4FreeRouteTable()
277 LIST_ENTRY *Next; in Ip4PurgeRouteCache() local
282 NET_LIST_FOR_EACH_SAFE (Entry, Next, &RtCache->CacheBucket[Index]) { in Ip4PurgeRouteCache()
381 LIST_ENTRY *Next; in Ip4DelRoute() local
386 NET_LIST_FOR_EACH_SAFE (Entry, Next, Head) { in Ip4DelRoute()
473 for (Table = RtTable; Table != NULL; Table = Table->Next) { in Ip4FindRouteEntry()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
DMyAlloc.c109 for (Tmp = MyAllocData; Tmp != NULL; Tmp = Tmp->Next) { in MyCheck()
147 for (Tmp = MyAllocData; Tmp != NULL; Tmp = Tmp->Next) { in MyCheck()
265 Tmp->Next = MyAllocData; in MyAlloc()
266 …Tmp->Cksum = (UINTN) Tmp + (UINTN) (Tmp->Next) + Tmp->Line + Tmp->Size + (UINTN) (Tmp->File) + (U… in MyAlloc()
346 for (Tmp = MyAllocData;; Tmp = Tmp->Next) { in MyRealloc()
347 if (Tmp->Next == NULL) { in MyRealloc()
360 Tmp = Tmp->Next; in MyRealloc()
474 MyAllocData = MyAllocData->Next; in MyFree()
479 for (Tmp = MyAllocData;; Tmp = Tmp->Next) { in MyFree()
483 if (Tmp->Next == NULL) { in MyFree()
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
DMyAlloc.c102 for (Tmp = MyAllocData; Tmp != NULL; Tmp = Tmp->Next) { in MyCheck()
140 for (Tmp = MyAllocData; Tmp != NULL; Tmp = Tmp->Next) { in MyCheck()
258 Tmp->Next = MyAllocData; in MyAlloc()
259 …Tmp->Cksum = (UINTN) Tmp + (UINTN) (Tmp->Next) + Tmp->Line + Tmp->Size + (UINTN) (Tmp->File) + (U… in MyAlloc()
339 for (Tmp = MyAllocData;; Tmp = Tmp->Next) { in MyRealloc()
340 if (Tmp->Next == NULL) { in MyRealloc()
353 Tmp = Tmp->Next; in MyRealloc()
467 MyAllocData = MyAllocData->Next; in MyFree()
472 for (Tmp = MyAllocData;; Tmp = Tmp->Next) { in MyFree()
476 if (Tmp->Next == NULL) { in MyFree()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/MakeDeps/
DMakeDeps.c35 struct _STRING_LIST *Next; member
100 struct _SYMBOL *Next; member
245 TempList = ProcessedFiles.Next; in main()
246 while (ProcessedFiles.Next != NULL) { in main()
247 TempList = ProcessedFiles.Next->Next; in main()
248 free (ProcessedFiles.Next->Str); in main()
249 free (ProcessedFiles.Next); in main()
250 ProcessedFiles.Next = TempList; in main()
291 File = File->Next; in main()
302 TempList = ProcessedFiles.Next; in main()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
DStringParse.c34 struct _STRING_PACK_RECORD *Next; member
77 for (Rec = mStringPacks; Rec != NULL; Rec = Rec->Next) { in StringGetPack()
176 for (TempRec = mStringPacks; TempRec->Next != NULL; TempRec = TempRec->Next) in StringParsePack()
178 TempRec->Next = Rec; in StringParsePack()
229 STRING_PACK_RECORD *Next; in StringEnd() local
238 Next = mStringPacks->Next; in StringEnd()
240 mStringPacks = Next; in StringEnd()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/
DEfiVfr.h52 struct _STRUCT_FIELD_DEFINITION *Next; member
61 struct _STRUCT_DEFINITION *Next; member
83 struct _UINT16_LIST *Next; member
89 struct _GOTO_REFERENCE *Next; member
95 struct _FORM_ID_VALUE *Next; member
106 struct _PARSER_LINE_DEFINITION *Next; member
138 struct _IFR_BYTE *Next; member
DVfrServices.cpp191 IFR_BYTE *Next; in WriteIfrBytes() local
263 Curr = Curr->Next; in WriteIfrBytes()
314 Curr = Curr->Next; in WriteIfrBytes()
379 if (Curr->Next != NULL) { in WriteIfrBytes()
380 BytesLeftThisOpcode = (UINT32)Curr->Next->OpcodeByte; in WriteIfrBytes()
389 Curr = Curr->Next; in WriteIfrBytes()
413 if (Curr->Next == NULL) { in WriteIfrBytes()
417 Count = (UINT32)Curr->Next->OpcodeByte; in WriteIfrBytes()
499 Curr = Curr->Next; in WriteIfrBytes()
523 IFR_BYTE *Next; in ~VfrOpcodeHandler() local
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
DBmConsole.c133 EFI_DEVICE_PATH_PROTOCOL *Next; in EfiBootManagerGetGopDevicePath() local
180 for (Next = DevicePath; !IsDevicePathEnd (Next); Next = NextDevicePathNode (Next)) { in EfiBootManagerGetGopDevicePath()
181 Previous = Next; in EfiBootManagerGetGopDevicePath()
530 EFI_DEVICE_PATH_PROTOCOL *Next; in EfiBootManagerConnectConsoleVariable() local
563 Next = Instance; in EfiBootManagerConnectConsoleVariable()
564 while (!IsDevicePathEndType (Next)) { in EfiBootManagerConnectConsoleVariable()
565 Next = NextDevicePathNode (Next); in EfiBootManagerConnectConsoleVariable()
568 SetDevicePathEndNode (Next); in EfiBootManagerConnectConsoleVariable()
583 for (Next = Instance; !IsDevicePathEnd (Next); Next = NextDevicePathNode (Next)) { in EfiBootManagerConnectConsoleVariable()
584 if (DevicePathType (Next) == ACPI_DEVICE_PATH && DevicePathSubType (Next) == ACPI_ADR_DP) { in EfiBootManagerConnectConsoleVariable()
[all …]
DBmMisc.c145 UINT32 Next; in BmSetMemoryTypeInformationVariable() local
233 Next = Previous; in BmSetMemoryTypeInformationVariable()
243 Next = Current + (Current >> 2); in BmSetMemoryTypeInformationVariable()
246 Next = Current + (Current >> 2); in BmSetMemoryTypeInformationVariable()
248 if (Next > 0 && Next < 4) { in BmSetMemoryTypeInformationVariable()
249 Next = 4; in BmSetMemoryTypeInformationVariable()
252 if (Next != Previous) { in BmSetMemoryTypeInformationVariable()
253 PreviousMemoryTypeInformation[Index].NumberOfPages = Next; in BmSetMemoryTypeInformationVariable()
257 … %02x %08x %08x %08x\n", PreviousMemoryTypeInformation[Index].Type, Previous, Current, Next)); in BmSetMemoryTypeInformationVariable()
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/
DUfsHcMem.c77 Block->Next = NULL; in UfsPeimAllocMemBlock()
185 Block->Next = Head->Next; in UfsPeimInsertMemBlockToPool()
186 Head->Next = Block; in UfsPeimInsertMemBlockToPool()
232 for (Block = Head; Block != NULL; Block = Block->Next) { in UfsPeimUnlinkMemBlock()
233 if (Block->Next == BlockToUnlink) { in UfsPeimUnlinkMemBlock()
234 Block->Next = BlockToUnlink->Next; in UfsPeimUnlinkMemBlock()
235 BlockToUnlink->Next = NULL; in UfsPeimUnlinkMemBlock()
304 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) { in UfsPeimFreeMemPool()
344 for (Block = Head; Block != NULL; Block = Block->Next) { in UfsPeimAllocateMem()
414 for (Block = Head; Block != NULL; Block = Block->Next) { in UfsPeimFreeMem()
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Pei/
DUsbHcMem.c102 Block->Next = NULL; in UsbHcAllocMemBlock()
214 Block->Next = Head->Next; in UsbHcInsertMemBlockToPool()
215 Head->Next = Block; in UsbHcInsertMemBlockToPool()
262 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcUnlinkMemBlock()
263 if (Block->Next == BlockToUnlink) { in UsbHcUnlinkMemBlock()
264 Block->Next = BlockToUnlink->Next; in UsbHcUnlinkMemBlock()
265 BlockToUnlink->Next = NULL; in UsbHcUnlinkMemBlock()
342 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) { in UsbHcFreeMemPool()
383 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcAllocateMem()
456 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcFreeMem()
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
DUsbHcMem.c103 Block->Next = NULL; in UsbHcAllocMemBlock()
212 Block->Next = Head->Next; in UsbHcInsertMemBlockToPool()
213 Head->Next = Block; in UsbHcInsertMemBlockToPool()
259 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcUnlinkMemBlock()
260 if (Block->Next == BlockToUnlink) { in UsbHcUnlinkMemBlock()
261 Block->Next = BlockToUnlink->Next; in UsbHcUnlinkMemBlock()
262 BlockToUnlink->Next = NULL; in UsbHcUnlinkMemBlock()
340 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) { in UsbHcFreeMemPool()
382 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcAllocateMem()
452 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcFreeMem()
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/
DUsbHcMem.c86 Block->Next = NULL; in UsbHcAllocMemBlock()
212 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcGetPciAddrForHostAddr()
261 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcGetHostAddrForPciAddr()
294 Block->Next = Head->Next; in UsbHcInsertMemBlockToPool()
295 Head->Next = Block; in UsbHcInsertMemBlockToPool()
340 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcUnlinkMemBlock()
341 if (Block->Next == BlockToUnlink) { in UsbHcUnlinkMemBlock()
342 Block->Next = BlockToUnlink->Next; in UsbHcUnlinkMemBlock()
343 BlockToUnlink->Next = NULL; in UsbHcUnlinkMemBlock()
409 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) { in UsbHcFreeMemPool()
[all …]
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
DUsbHcMem.c253 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcGetPciAddressForHostMem()
287 Block->Next = Head->Next; in UsbHcInsertMemBlockToPool()
288 Head->Next = Block; in UsbHcInsertMemBlockToPool()
335 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcUnlinkMemBlock()
336 if (Block->Next == BlockToUnlink) { in UsbHcUnlinkMemBlock()
337 Block->Next = BlockToUnlink->Next; in UsbHcUnlinkMemBlock()
338 BlockToUnlink->Next = NULL; in UsbHcUnlinkMemBlock()
409 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) { in UsbHcFreeMemPool()
451 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcAllocateMem()
524 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcFreeMem()
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
DUsbHcMem.c252 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcGetPciAddressForHostMem()
285 Block->Next = Head->Next; in UsbHcInsertMemBlockToPool()
286 Head->Next = Block; in UsbHcInsertMemBlockToPool()
333 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcUnlinkMemBlock()
334 if (Block->Next == BlockToUnlink) { in UsbHcUnlinkMemBlock()
335 Block->Next = BlockToUnlink->Next; in UsbHcUnlinkMemBlock()
336 BlockToUnlink->Next = NULL; in UsbHcUnlinkMemBlock()
407 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) { in UsbHcFreeMemPool()
449 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcAllocateMem()
522 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcFreeMem()
DUhciSched.c256 UHCI_QH_SW *Next; in UhciLinkQhToFrameList() local
270 Next = (UHCI_QH_SW*)(UINTN)Uhc->FrameBaseHostAddr[Index]; in UhciLinkQhToFrameList()
287 while (Next->Interval > Qh->Interval) { in UhciLinkQhToFrameList()
288 Prev = Next; in UhciLinkQhToFrameList()
289 Next = Next->NextQh; in UhciLinkQhToFrameList()
290 ASSERT (Next != NULL); in UhciLinkQhToFrameList()
302 if (Next == Qh) { in UhciLinkQhToFrameList()
306 if (Next->Interval == Qh->Interval) { in UhciLinkQhToFrameList()
314 Prev = Next; in UhciLinkQhToFrameList()
315 Next = Next->NextQh; in UhciLinkQhToFrameList()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
DUsbHcMem.c253 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcGetPciAddressForHostMem()
287 Block->Next = Head->Next; in UsbHcInsertMemBlockToPool()
288 Head->Next = Block; in UsbHcInsertMemBlockToPool()
335 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcUnlinkMemBlock()
336 if (Block->Next == BlockToUnlink) { in UsbHcUnlinkMemBlock()
337 Block->Next = BlockToUnlink->Next; in UsbHcUnlinkMemBlock()
338 BlockToUnlink->Next = NULL; in UsbHcUnlinkMemBlock()
409 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) { in UsbHcFreeMemPool()
451 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcAllocateMem()
524 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcFreeMem()
DEhciSched.c407 EHC_QH *Next; in EhcLinkQhToPeriod() local
416 Next = (EHC_QH*)((UINTN*)Ehc->PeriodFrameHost)[Index]; in EhcLinkQhToPeriod()
429 while (Next->Interval > Qh->Interval) { in EhcLinkQhToPeriod()
430 Prev = Next; in EhcLinkQhToPeriod()
431 Next = Next->NextQh; in EhcLinkQhToPeriod()
434 ASSERT (Next != NULL); in EhcLinkQhToPeriod()
445 if (Next == Qh) { in EhcLinkQhToPeriod()
449 if (Next->Interval == Qh->Interval) { in EhcLinkQhToPeriod()
457 Prev = Next; in EhcLinkQhToPeriod()
458 Next = Next->NextQh; in EhcLinkQhToPeriod()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/
DUsbHcMem.c245 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcGetPciAddrForHostAddr()
294 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcGetHostAddrForPciAddr()
327 Block->Next = Head->Next; in UsbHcInsertMemBlockToPool()
328 Head->Next = Block; in UsbHcInsertMemBlockToPool()
375 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcUnlinkMemBlock()
376 if (Block->Next == BlockToUnlink) { in UsbHcUnlinkMemBlock()
377 Block->Next = BlockToUnlink->Next; in UsbHcUnlinkMemBlock()
378 BlockToUnlink->Next = NULL; in UsbHcUnlinkMemBlock()
442 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) { in UsbHcFreeMemPool()
484 for (Block = Head; Block != NULL; Block = Block->Next) { in UsbHcAllocateMem()
[all …]

123456