MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / AllocFromPoolExecutable

Function AllocFromPoolExecutable

Kernel-Bridge/API/MemoryUtils.cpp:36–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34
35 _IRQL_requires_max_(DISPATCH_LEVEL)
36 PVOID AllocFromPoolExecutable(SIZE_T Bytes) {
37 if (!Bytes) return NULL;
38 return ExAllocatePoolWithTag(
39 NonPagedPoolExecute,
40 Bytes,
41 PoolTag
42 );
43 }
44
45 _IRQL_requires_max_(DISPATCH_LEVEL)
46 LPSTR AllocAnsiString(SIZE_T Characters) {

Callers 1

KbAllocKernelMemoryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected