LLDB.Target.ResolvePastLoadAddress C# (CSharp) Method

ResolvePastLoadAddress() public method

Resolve a current load address into a section offset address

using the process stop ID to identify a time in the past.

public ResolvePastLoadAddress ( uint stop_id, ulong vm_addr ) : LLDB.Address
stop_id uint /// Each time a process stops, the process stop ID integer gets /// incremented. These stop IDs are used to identify past times /// and can be used in history objects as a cheap way to store /// the time at which the sample was taken. Specifying /// UINT32_MAX will always resolve the address using the /// currently loaded sections. ///
vm_addr ulong /// A virtual address from the current process state that is to /// be translated into a section offset address. ///
return LLDB.Address
        public LLDB.Address ResolvePastLoadAddress(uint stop_id, ulong vm_addr)
        {
            var __ret = new LLDB.Address.Internal();
            Internal.ResolvePastLoadAddress_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), stop_id, vm_addr);
            return LLDB.Address.__CreateInstance(__ret);
        }