| 286 | |
| 287 | _IRQL_requires_max_(APC_LEVEL) |
| 288 | PVOID HeapObject::AllocArray(SIZE_T ElementSize, SIZE_T ElementsCount) const |
| 289 | { |
| 290 | return AllocHeap(HeapHandle, ElementSize * ElementsCount); |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | namespace PhysicalMemory |
nothing calls this directly
no test coverage detected