LLDB.Target.ReadInstructions C# (CSharp) Method

ReadInstructions() public method

public ReadInstructions ( LLDB base_addr, uint count ) : LLDB.InstructionList
base_addr LLDB
count uint
return LLDB.InstructionList
        public LLDB.InstructionList ReadInstructions(LLDB.Address base_addr, uint count)
        {
            var arg0 = ReferenceEquals(base_addr, null) ? new LLDB.Address.Internal() : *(LLDB.Address.Internal*) (base_addr.__Instance);
            var __ret = new LLDB.InstructionList.Internal();
            Internal.ReadInstructions_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0, count);
            return LLDB.InstructionList.__CreateInstance(__ret);
        }

Same methods

Target::ReadInstructions ( LLDB base_addr, uint count, string flavor_string ) : LLDB.InstructionList