Inheritance: IDisposable
Example #1
0
 private Debugger(Debugger.Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
Example #2
0
 private static void* __CopyValue(Debugger.Internal native)
 {
     var ret = Marshal.AllocHGlobal(8);
     LLDB.Debugger.Internal.cctor_1(ret, new global::System.IntPtr(&native));
     return ret.ToPointer();
 }
Example #3
0
 public static Debugger __CreateInstance(Debugger.Internal native, bool skipVTables = false)
 {
     return new Debugger(native, skipVTables);
 }