Lines Matching refs:mdn2
580 MOUNTDEV_NAME* mdn2; variable
583 mdn2 = ExAllocatePoolWithTag(PagedPool, mdnsize, ALLOC_TAG);
584 if (!mdn2)
587 …tatus = dev_ioctl(vc2->devobj, IOCTL_MOUNTDEV_QUERY_DEVICE_NAME, NULL, 0, mdn2, mdnsize, true, NUL…
593 name.Buffer = mdn2->Name;
594 name.Length = name.MaximumLength = mdn2->NameLength;
601 ExFreePool(mdn2);
969 MOUNTDEV_NAME* mdn2; in mountmgr_process_drive() local
972 mdn2 = ExAllocatePoolWithTag(NonPagedPool, mdnsize, ALLOC_TAG); in mountmgr_process_drive()
973 if (!mdn2) in mountmgr_process_drive()
976 …Status = dev_ioctl(vc->devobj, IOCTL_MOUNTDEV_QUERY_DEVICE_NAME, NULL, 0, mdn2, mdnsize, true, NUL… in mountmgr_process_drive()
980 …if (mdn2->NameLength == device_name->Length && RtlCompareMemory(mdn2->Name, device_name->Buffer, d… in mountmgr_process_drive()
987 ExFreePool(mdn2); in mountmgr_process_drive()