ExQueryPoolUsage

VOID __stdcall ExQueryPoolUsage(
        UINT64 *PagedPoolPages,
        UINT64 *NonPagedPoolPages,
        UINT64 *PagedPoolAllocs,
        UINT64 *PagedPoolFrees,
        UINT64 *PagedPoolLookasideHits,
        UINT64 *NonPagedPoolAllocs,
        UINT64 *NonPagedPoolFrees,
        UINT64 *NonPagedPoolLookasideHits){
  ExHeapQueryPoolUsage(
    PagedPoolPages,
    NonPagedPoolPages,
    PagedPoolAllocs,
    PagedPoolFrees,
    PagedPoolLookasideHits,
    NonPagedPoolAllocs,
    NonPagedPoolFrees,
    NonPagedPoolLookasideHits);
}

Referenced by:

ExpQuerySystemPerformanceInformation