Home
last modified time | relevance | path

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

/reactos/drivers/filesystems/btrfs/
H A Dvolume.c149 PIRP Irp2; in vol_read() local
169 if (!Irp2) { in vol_read()
203 Irp2->UserIosb = &context.iosb; in vol_read()
230 PIRP Irp2; in vol_write() local
256 if (!Irp2) { in vol_write()
272 Irp2->Flags |= IRP_BUFFERED_IO; in vol_write()
284 Irp2->UserIosb = &context.iosb; in vol_write()
664 PIRP Irp2; in vol_ioctl_passthrough() local
687 if (!Irp2) { in vol_ioctl_passthrough()
708 Irp2->Flags = Irp->Flags; in vol_ioctl_passthrough()
[all …]
H A Dpnp.c342 PIRP Irp2; in pdo_device_usage_notification() local
346 Irp2 = IoAllocateIrp(vc->devobj->StackSize, false); in pdo_device_usage_notification()
347 if (!Irp2) { in pdo_device_usage_notification()
353 IrpSp2 = IoGetNextIrpStackLocation(Irp2); in pdo_device_usage_notification()
360 Irp2->UserIosb = &context.iosb; in pdo_device_usage_notification()
363 Irp2->UserEvent = &context.Event; in pdo_device_usage_notification()
365 IoSetCompletionRoutine(Irp2, device_usage_completion, &context, true, true, true); in pdo_device_usage_notification()
367 context.Status = IoCallDriver(vc->devobj, Irp2); in pdo_device_usage_notification()