DkmModule.GetSymbolNameForRVA Method

Definition

Overloads

GetSymbolNameForRVA(UInt32, UInt64)

Gets the symbol name for the RVA.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 16 RTM (DkmApiVersion.VS16RTM).

GetSymbolNameForRVA(DkmWorkList, UInt32, DkmCompletionRoutine<DkmGetSymbolNameForRVAAsyncResult>)

Gets the symbol name for the RVA.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 16 RTM (DkmApiVersion.VS16RTM).

GetSymbolNameForRVA(UInt32, UInt64)

Gets the symbol name for the RVA.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 16 RTM (DkmApiVersion.VS16RTM).

public:
 System::String ^ GetSymbolNameForRVA(System::UInt32 RVA, [Runtime::InteropServices::Out] System::UInt64 % Displacement);
public string GetSymbolNameForRVA (uint RVA, out ulong Displacement);
member this.GetSymbolNameForRVA : uint32 * uint64 -> string
Public Function GetSymbolNameForRVA (RVA As UInteger, ByRef Displacement As ULong) As String

Parameters

RVA
UInt32

[In] The RVA of the symbol.

Displacement
UInt64

[Out] The symbol displacement.

Returns

[Out] The symbol name for use in formatting.

Applies to

GetSymbolNameForRVA(DkmWorkList, UInt32, DkmCompletionRoutine<DkmGetSymbolNameForRVAAsyncResult>)

Gets the symbol name for the RVA.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 16 RTM (DkmApiVersion.VS16RTM).

public:
 void GetSymbolNameForRVA(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, System::UInt32 RVA, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Symbols::DkmGetSymbolNameForRVAAsyncResult> ^ CompletionRoutine);
public void GetSymbolNameForRVA (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, uint RVA, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmGetSymbolNameForRVAAsyncResult> CompletionRoutine);
member this.GetSymbolNameForRVA : Microsoft.VisualStudio.Debugger.DkmWorkList * uint32 * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmGetSymbolNameForRVAAsyncResult> -> unit
Public Sub GetSymbolNameForRVA (WorkList As DkmWorkList, RVA As UInteger, CompletionRoutine As DkmCompletionRoutine(Of DkmGetSymbolNameForRVAAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

RVA
UInt32

[In] The RVA of the symbol.

CompletionRoutine
DkmCompletionRoutine<DkmGetSymbolNameForRVAAsyncResult>

Routine to fire when the request is complete. If the request is successfully appended to the work list, this will always fire (including when the operation is canceled). This will never fire if appending the work item fails.

Applies to