HomeSort by relevance Sort by last modified time
    Searched refs:AllocInfo (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/
MemoryProfileRecord.c 35 MEMORY_PROFILE_ALLOC_INFO AllocInfo;
823 MEMORY_PROFILE_ALLOC_INFO *AllocInfo;
851 AllocInfo = &AllocInfoData->AllocInfo;
853 AllocInfo->Header.Signature = MEMORY_PROFILE_ALLOC_INFO_SIGNATURE;
854 AllocInfo->Header.Length = sizeof (MEMORY_PROFILE_ALLOC_INFO);
855 AllocInfo->Header.Revision = MEMORY_PROFILE_ALLOC_INFO_REVISION;
856 AllocInfo->CallerAddress = CallerAddress;
857 AllocInfo->SequenceId = ContextData->Context.SequenceCount;
858 AllocInfo->Action = Action;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
SmramProfileRecord.c 34 MEMORY_PROFILE_ALLOC_INFO AllocInfo;
827 MEMORY_PROFILE_ALLOC_INFO *AllocInfo;
854 AllocInfo = &AllocInfoData->AllocInfo;
856 AllocInfo->Header.Signature = MEMORY_PROFILE_ALLOC_INFO_SIGNATURE;
857 AllocInfo->Header.Length = sizeof (MEMORY_PROFILE_ALLOC_INFO);
858 AllocInfo->Header.Revision = MEMORY_PROFILE_ALLOC_INFO_REVISION;
859 AllocInfo->CallerAddress = CallerAddress;
860 AllocInfo->SequenceId = ContextData->Context.SequenceCount;
861 AllocInfo->Action = Action;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/MemoryProfileInfo/
MemoryProfileInfo.c 254 @param[in] AllocInfo Pointer to memory profile alloc info.
263 IN MEMORY_PROFILE_ALLOC_INFO *AllocInfo
266 if (AllocInfo->Header.Signature != MEMORY_PROFILE_ALLOC_INFO_SIGNATURE) {
270 Print (L" Signature - 0x%08x\n", AllocInfo->Header.Signature);
271 Print (L" Length - 0x%04x\n", AllocInfo->Header.Length);
272 Print (L" Revision - 0x%04x\n", AllocInfo->Header.Revision);
273 Print (L" CallerAddress - 0x%016lx (Offset: 0x%08x)\n", AllocInfo->CallerAddress, (UINTN) (AllocInfo->CallerAddress - DriverInfo->ImageBase));
274 Print (L" SequenceId - 0x%08x\n", AllocInfo->SequenceId);
275 Print (L" Action - 0x%08x (%s)\n", AllocInfo->Action, mActionString[(AllocInfo->Action < sizeof(mActionString)/sizeof(mActionString[0])) ? Allo (…)
    [all...]

Completed in 66 milliseconds