Home
last modified time | relevance | path

Searched refs:AllocInfo (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/
DMemoryProfileRecord.c35 MEMORY_PROFILE_ALLOC_INFO AllocInfo; member
823 MEMORY_PROFILE_ALLOC_INFO *AllocInfo; in CoreUpdateProfileAllocate() local
851 AllocInfo = &AllocInfoData->AllocInfo; in CoreUpdateProfileAllocate()
853 AllocInfo->Header.Signature = MEMORY_PROFILE_ALLOC_INFO_SIGNATURE; in CoreUpdateProfileAllocate()
854 AllocInfo->Header.Length = sizeof (MEMORY_PROFILE_ALLOC_INFO); in CoreUpdateProfileAllocate()
855 AllocInfo->Header.Revision = MEMORY_PROFILE_ALLOC_INFO_REVISION; in CoreUpdateProfileAllocate()
856 AllocInfo->CallerAddress = CallerAddress; in CoreUpdateProfileAllocate()
857 AllocInfo->SequenceId = ContextData->Context.SequenceCount; in CoreUpdateProfileAllocate()
858 AllocInfo->Action = Action; in CoreUpdateProfileAllocate()
859 AllocInfo->MemoryType = MemoryType; in CoreUpdateProfileAllocate()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
DSmramProfileRecord.c34 MEMORY_PROFILE_ALLOC_INFO AllocInfo; member
827 MEMORY_PROFILE_ALLOC_INFO *AllocInfo; in SmmCoreUpdateProfileAllocate() local
854 AllocInfo = &AllocInfoData->AllocInfo; in SmmCoreUpdateProfileAllocate()
856 AllocInfo->Header.Signature = MEMORY_PROFILE_ALLOC_INFO_SIGNATURE; in SmmCoreUpdateProfileAllocate()
857 AllocInfo->Header.Length = sizeof (MEMORY_PROFILE_ALLOC_INFO); in SmmCoreUpdateProfileAllocate()
858 AllocInfo->Header.Revision = MEMORY_PROFILE_ALLOC_INFO_REVISION; in SmmCoreUpdateProfileAllocate()
859 AllocInfo->CallerAddress = CallerAddress; in SmmCoreUpdateProfileAllocate()
860 AllocInfo->SequenceId = ContextData->Context.SequenceCount; in SmmCoreUpdateProfileAllocate()
861 AllocInfo->Action = Action; in SmmCoreUpdateProfileAllocate()
862 AllocInfo->MemoryType = MemoryType; in SmmCoreUpdateProfileAllocate()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Application/MemoryProfileInfo/
DMemoryProfileInfo.c263 IN MEMORY_PROFILE_ALLOC_INFO *AllocInfo in DumpMemoryProfileAllocInfo() argument
266 if (AllocInfo->Header.Signature != MEMORY_PROFILE_ALLOC_INFO_SIGNATURE) { in DumpMemoryProfileAllocInfo()
270 Print (L" Signature - 0x%08x\n", AllocInfo->Header.Signature); in DumpMemoryProfileAllocInfo()
271 Print (L" Length - 0x%04x\n", AllocInfo->Header.Length); in DumpMemoryProfileAllocInfo()
272 Print (L" Revision - 0x%04x\n", AllocInfo->Header.Revision); in DumpMemoryProfileAllocInfo()
273 …L" CallerAddress - 0x%016lx (Offset: 0x%08x)\n", AllocInfo->CallerAddress, (UINTN) (AllocInfo in DumpMemoryProfileAllocInfo()
274 Print (L" SequenceId - 0x%08x\n", AllocInfo->SequenceId); in DumpMemoryProfileAllocInfo()
275 … - 0x%08x (%s)\n", AllocInfo->Action, mActionString[(AllocInfo->Action < sizeof(mActionString)/si… in DumpMemoryProfileAllocInfo()
276 …Print (L" MemoryType - 0x%08x (%s)\n", AllocInfo->MemoryType, ProfileMemoryTypeToStr (Allo… in DumpMemoryProfileAllocInfo()
277 Print (L" Buffer - 0x%016lx\n", AllocInfo->Buffer); in DumpMemoryProfileAllocInfo()
[all …]