FxDeviceDescriptionEntry::operator new()

in src/framework/kmdf/src/core/fxchildlist.cpp [82:95]


FxDeviceDescriptionEntry::operator new(
    __in size_t AllocatorBlock,
    __in PFX_DRIVER_GLOBALS FxDriverGlobals,
    __in size_t TotalDescriptionSize
    )
{
    PVOID p;

    UNREFERENCED_PARAMETER(AllocatorBlock);

    p = FxPoolAllocate2(FxDriverGlobals, POOL_FLAG_NON_PAGED, TotalDescriptionSize);

    return p;
}