MmDeterminePoolType

POOL_TYPE __stdcall MmDeterminePoolType(VOID *VirtualAddress){
  POOL_TYPE v1; 
  POOL_TYPE result; 

  v1 = MiDeterminePoolType((UINT64)VirtualAddress);
  result = NonPagedPool;
  if( v1 != NonPagedPoolSession )
    return v1;
  return result;
}

Referenced by:

ExFreePoolSanityChecks
VerifierMmBuildMdlForNonPagedPool