DkmRuntimeFunctionResolutionRequest.OnFunctionResolved Method

Definition

Overloads

OnFunctionResolved(DkmInstructionAddress)

Called by runtime function resolvers when a new resolution has been discovered for a DkmRuntimeFunctionResolutionRequest instance.

Location constraint: API must be called from a Monitor component (component level < 100,000).

OnFunctionResolved(DkmWorkList, DkmInstructionAddress, DkmCompletionRoutine<DkmOnFunctionResolvedAsyncResult>)

Called by runtime function resolvers when a new resolution has been discovered for a DkmRuntimeFunctionResolutionRequest instance.

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 a Monitor component (component level < 100,000).

OnFunctionResolved(DkmInstructionAddress)

Called by runtime function resolvers when a new resolution has been discovered for a DkmRuntimeFunctionResolutionRequest instance.

Location constraint: API must be called from a Monitor component (component level < 100,000).

public:
 void OnFunctionResolved(Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ Address);
public:
 void OnFunctionResolved(Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ Address);
void OnFunctionResolved(Microsoft::VisualStudio::Debugger::DkmInstructionAddress const & Address);
public void OnFunctionResolved (Microsoft.VisualStudio.Debugger.DkmInstructionAddress Address);
member this.OnFunctionResolved : Microsoft.VisualStudio.Debugger.DkmInstructionAddress -> unit
Public Sub OnFunctionResolved (Address As DkmInstructionAddress)

Parameters

Address
DkmInstructionAddress

[In] The address the request bound to. Multiple addresses will result in multiple calls to this function.

Applies to

OnFunctionResolved(DkmWorkList, DkmInstructionAddress, DkmCompletionRoutine<DkmOnFunctionResolvedAsyncResult>)

Called by runtime function resolvers when a new resolution has been discovered for a DkmRuntimeFunctionResolutionRequest instance.

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 a Monitor component (component level < 100,000).

public:
 void OnFunctionResolved(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ Address, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::FunctionResolution::DkmOnFunctionResolvedAsyncResult> ^ CompletionRoutine);
public void OnFunctionResolved (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmInstructionAddress Address, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.FunctionResolution.DkmOnFunctionResolvedAsyncResult> CompletionRoutine);
member this.OnFunctionResolved : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmInstructionAddress * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.FunctionResolution.DkmOnFunctionResolvedAsyncResult> -> unit
Public Sub OnFunctionResolved (WorkList As DkmWorkList, Address As DkmInstructionAddress, CompletionRoutine As DkmCompletionRoutine(Of DkmOnFunctionResolvedAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

Address
DkmInstructionAddress

[In] The address the request bound to. Multiple addresses will result in multiple calls to this function.

CompletionRoutine
DkmCompletionRoutine<DkmOnFunctionResolvedAsyncResult>

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