Home
last modified time | relevance | path

Searched refs:NewDriverExtension (Results 1 – 1 of 1) sorted by relevance

/reactos/ntoskrnl/io/iomgr/
H A Ddriver.c1832 PIO_CLIENT_EXTENSION DriverExtensions, NewDriverExtension; in IoAllocateDriverObjectExtension() local
1839 NewDriverExtension = ExAllocatePoolWithTag(NonPagedPool, in IoAllocateDriverObjectExtension()
1843 if (!NewDriverExtension) return STATUS_INSUFFICIENT_RESOURCES; in IoAllocateDriverObjectExtension()
1846 RtlZeroMemory(NewDriverExtension, in IoAllocateDriverObjectExtension()
1853 NewDriverExtension->ClientIdentificationAddress = ClientIdentificationAddress; in IoAllocateDriverObjectExtension()
1876 NewDriverExtension->NextExtension = in IoAllocateDriverObjectExtension()
1879 NewDriverExtension; in IoAllocateDriverObjectExtension()
1890 ExFreePoolWithTag(NewDriverExtension, TAG_DRIVER_EXTENSION); in IoAllocateDriverObjectExtension()
1895 *DriverObjectExtension = NewDriverExtension + 1; in IoAllocateDriverObjectExtension()