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