Esempio n. 1
0
 public LLDB.Section GetParent()
 {
     var __ret = new LLDB.Section.Internal();
     Internal.GetParent_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment));
     return LLDB.Section.__CreateInstance(__ret);
 }
Esempio n. 2
0
 public LLDB.Section GetSubSectionAtIndex(uint idx)
 {
     var __ret = new LLDB.Section.Internal();
     Internal.GetSubSectionAtIndex_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), idx);
     return LLDB.Section.__CreateInstance(__ret);
 }
Esempio n. 3
0
 public LLDB.Section FindSubSection(string sect_name)
 {
     var arg0 = Marshal.StringToHGlobalAnsi(sect_name);
     var __ret = new LLDB.Section.Internal();
     Internal.FindSubSection_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0);
     Marshal.FreeHGlobal(arg0);
     return LLDB.Section.__CreateInstance(__ret);
 }