DkmProcess.FindNativeModule Method

Definition

Overloads

FindNativeModule(UInt64)

Resolves a virtual address to a native module. If the virtual address is not within a module, null is returned (S_FALSE return code in native). Disabled modules will not be returned.

FindNativeModule(UInt64, Boolean)

Resolves a virtual address to a native module. If the virtual address is not within a module, null is returned (S_FALSE return code in native).

FindNativeModule(UInt64)

Resolves a virtual address to a native module. If the virtual address is not within a module, null is returned (S_FALSE return code in native). Disabled modules will not be returned.

public:
 Microsoft::VisualStudio::Debugger::Native::DkmNativeModuleInstance ^ FindNativeModule(System::UInt64 Address);
public Microsoft.VisualStudio.Debugger.Native.DkmNativeModuleInstance FindNativeModule (ulong Address);
member this.FindNativeModule : uint64 -> Microsoft.VisualStudio.Debugger.Native.DkmNativeModuleInstance
Public Function FindNativeModule (Address As ULong) As DkmNativeModuleInstance

Parameters

Address
UInt64

[In] Memory address to use as a search key.

Returns

[Out,Optional] 'DkmNativeModuleInstance' is used for modules which contain CPU code and/or are loaded by the Win32 loader.

Applies to

FindNativeModule(UInt64, Boolean)

Resolves a virtual address to a native module. If the virtual address is not within a module, null is returned (S_FALSE return code in native).

public:
 Microsoft::VisualStudio::Debugger::Native::DkmNativeModuleInstance ^ FindNativeModule(System::UInt64 Address, bool IncludeDisabledModules);
public Microsoft.VisualStudio.Debugger.Native.DkmNativeModuleInstance FindNativeModule (ulong Address, bool IncludeDisabledModules);
member this.FindNativeModule : uint64 * bool -> Microsoft.VisualStudio.Debugger.Native.DkmNativeModuleInstance
Public Function FindNativeModule (Address As ULong, IncludeDisabledModules As Boolean) As DkmNativeModuleInstance

Parameters

Address
UInt64

[In] Memory address to use as a search key.

IncludeDisabledModules
Boolean

[In] When true, the search will include module instances that have 'IsDisabled' set to 'true'.

Returns

[Out,Optional] 'DkmNativeModuleInstance' is used for modules which contain CPU code and/or are loaded by the Win32 loader.

Applies to