IDkmDisassemblyRuntimeAddressResolver.GetSymbolNameForAddress Method

Definition

Gets the symbol name for the specified address using runtime information instead of symbols. Currently this is just implemented for the CLR runtime instance.

public:
 void GetSymbolNameForAddress(Microsoft::VisualStudio::Debugger::DkmRuntimeInstance ^ runtimeInstance, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, System::UInt64 address, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Disassembly::DkmGetSymbolNameForAddressAsyncResult> ^ completionRoutine);
public void GetSymbolNameForAddress (Microsoft.VisualStudio.Debugger.DkmRuntimeInstance runtimeInstance, Microsoft.VisualStudio.Debugger.DkmWorkList workList, ulong address, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Disassembly.DkmGetSymbolNameForAddressAsyncResult> completionRoutine);
abstract member GetSymbolNameForAddress : Microsoft.VisualStudio.Debugger.DkmRuntimeInstance * Microsoft.VisualStudio.Debugger.DkmWorkList * uint64 * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Disassembly.DkmGetSymbolNameForAddressAsyncResult> -> unit
Public Sub GetSymbolNameForAddress (runtimeInstance As DkmRuntimeInstance, workList As DkmWorkList, address As ULong, completionRoutine As DkmCompletionRoutine(Of DkmGetSymbolNameForAddressAsyncResult))

Parameters

runtimeInstance
DkmRuntimeInstance

[In] The DkmRuntimeInstance class represents an execution environment which is loaded into a DkmProcess and which contains code to be debugged.

workList
DkmWorkList

WorkList which is currently being processed. This value can be used to check for cancelation or to append additional work. New work items will not begin executing until after this function returns.

address
UInt64

[In] The address to resolve.

completionRoutine
DkmCompletionRoutine<DkmGetSymbolNameForAddressAsyncResult>

Routine to fire when the request is complete. This will be implicitly fired if the implementation returns failure from this interface method. The implementation must fire this method in all other scenarios.

Applies to