ReactOS 0.4.15-dev-7842-g558ab78
debug.c File Reference
#include "stdarg.h"
#include "ext2fs.h"
Include dependency graph for debug.c:

Go to the source code of this file.

Functions

PVOID Ext2AllocatePool (IN POOL_TYPE PoolType, IN SIZE_T NumberOfBytes, IN ULONG Tag)
 
VOID Ext2FreePool (IN PVOID P, IN ULONG Tag)
 

Function Documentation

◆ Ext2AllocatePool()

PVOID Ext2AllocatePool ( IN POOL_TYPE  PoolType,
IN SIZE_T  NumberOfBytes,
IN ULONG  Tag 
)

Definition at line 2684 of file debug.c.

2689{
2690 return ExAllocatePoolWithTag(
2691 PoolType,
2693 Tag);
2694}
#define ExAllocatePoolWithTag(hernya, size, tag)
Definition: env_spec_w32.h:350
_Must_inspect_result_ _In_ WDFDEVICE _In_ BOOLEAN _In_opt_ PVOID Tag
Definition: wdfdevice.h:4065
_Must_inspect_result_ _In_ WDFDEVICE _In_ DEVICE_REGISTRY_PROPERTY _In_ _Strict_type_match_ POOL_TYPE PoolType
Definition: wdfdevice.h:3815
_Must_inspect_result_ typedef _In_ PHYSICAL_ADDRESS _Inout_ PLARGE_INTEGER NumberOfBytes
Definition: iotypes.h:1036

Referenced by DriverEntry(), Ext2BuildName(), Ext2CreateFile(), Ext2ExpandLast(), Ext2FillEntry(), Ext2FollowLink(), Ext2GetReparsePoint(), Ext2LoadSuper(), Ext2QueryDirectory(), Ext2QueryExtentMappings(), Ext2QueryRegistrySettings(), Ext2QueryVolumeParams(), Ext2ReadDisk(), Ext2ReadSync(), Ext2ReadWriteBlocks(), Ext2SetParentEntry(), Ext2SetReparsePoint(), and Ext2StartFloppyFlushDpc().

◆ Ext2FreePool()