ReactOS 0.4.16-dev-937-g7afcd2a
|
#include "precomp.h"
Go to the source code of this file.
Macros | |
#define | IS_DRIVE_LETTER_PFX(s) |
#define | IS_DRIVE_LETTER(s) (IS_DRIVE_LETTER_PFX(s) && (s)->Length == 2*sizeof(WCHAR)) |
Functions | |
static VOID | Call_QueryDosVolume_Path_Paths (_In_ HANDLE MountMgrHandle, _In_ PCWSTR NtVolumeName, _In_ ULONG IoctlPathOrPaths, _Out_ PMOUNTMGR_VOLUME_PATHS *pVolumePathPtr) |
Invokes either IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATH or IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATHS for testing, given the volume device name, and returns an allocated volume paths buffer. This buffer must be freed by the caller via RtlFreeHeap(RtlGetProcessHeap(), ...) . | |
static VOID | Call_QueryPoints (_In_ HANDLE MountMgrHandle, _In_ PCWSTR NtVolumeName, _Out_ PMOUNTMGR_MOUNT_POINTS *pMountPointsPtr) |
Invokes IOCTL_MOUNTMGR_QUERY_POINTS for testing, given the volume device name, and returns an allocated mount points buffer. This buffer must be freed by the caller via RtlFreeHeap(RtlGetProcessHeap(), ...) . | |
static VOID | Test_QueryDosVolumePath (_In_ PCWSTR NtVolumeName, _In_ PMOUNTMGR_VOLUME_PATHS VolumePath) |
Tests the output of IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATH. | |
static VOID | Test_QueryDosVolumePaths (_In_ PCWSTR NtVolumeName, _In_ PMOUNTMGR_VOLUME_PATHS VolumePaths, _In_opt_ PMOUNTMGR_VOLUME_PATHS VolumePath) |
Tests the output of IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATHS. | |
static BOOLEAN | doesPathExistInMountPoints (_In_ PMOUNTMGR_MOUNT_POINTS MountPoints, _In_ PUNICODE_STRING DosPath) |
static VOID | Test_QueryPoints (_In_ PCWSTR NtVolumeName, _In_ PMOUNTMGR_MOUNT_POINTS MountPoints, _In_opt_ PMOUNTMGR_VOLUME_PATHS VolumePath, _In_opt_ PMOUNTMGR_VOLUME_PATHS VolumePaths) |
Tests the output of IOCTL_MOUNTMGR_QUERY_POINTS. | |
static VOID | Test_QueryDosVolumePathAndPaths (_In_ HANDLE MountMgrHandle, _In_ PCWSTR NtVolumeName) |
Tests the consistency of IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATH, IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATHS and IOCTL_MOUNTMGR_QUERY_POINTS. | |
START_TEST (QueryDosVolumePaths) | |
Definition at line 249 of file QueryDosVolumePaths.c.
Definition at line 244 of file QueryDosVolumePaths.c.
|
static |
Invokes either IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATH or IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATHS for testing, given the volume device name, and returns an allocated volume paths buffer. This buffer must be freed by the caller via RtlFreeHeap(RtlGetProcessHeap(), ...) .
These IOCTLs return both the drive letter (if any) and the volume GUID symlink path, as well as any other file-system mount reparse points linking to the volume.
Definition at line 24 of file QueryDosVolumePaths.c.
Referenced by Test_QueryDosVolumePathAndPaths().
|
static |
Invokes IOCTL_MOUNTMGR_QUERY_POINTS for testing, given the volume device name, and returns an allocated mount points buffer. This buffer must be freed by the caller via RtlFreeHeap(RtlGetProcessHeap(), ...) .
This IOCTL only returns both the drive letter (if any) and the volume GUID symlink path, but does NOT return file-system mount reparse points.
Definition at line 142 of file QueryDosVolumePaths.c.
Referenced by Test_QueryDosVolumePathAndPaths().
|
static |
Definition at line 390 of file QueryDosVolumePaths.c.
Referenced by Test_QueryPoints().
START_TEST | ( | QueryDosVolumePaths | ) |
Definition at line 568 of file QueryDosVolumePaths.c.
|
static |
Tests the output of IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATH.
Definition at line 257 of file QueryDosVolumePaths.c.
Referenced by Test_QueryDosVolumePathAndPaths().
|
static |
Tests the consistency of IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATH, IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATHS and IOCTL_MOUNTMGR_QUERY_POINTS.
Definition at line 524 of file QueryDosVolumePaths.c.
Referenced by START_TEST().
|
static |
Tests the output of IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATHS.
Definition at line 292 of file QueryDosVolumePaths.c.
Referenced by Test_QueryDosVolumePathAndPaths().
|
static |
Tests the output of IOCTL_MOUNTMGR_QUERY_POINTS.
Definition at line 450 of file QueryDosVolumePaths.c.
Referenced by Test_QueryDosVolumePathAndPaths().