상속: IDisposable
예제 #1
0
파일: SBValue.cs 프로젝트: tritao/LLDBSharp
 private Value(Value.Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
예제 #2
0
파일: SBValue.cs 프로젝트: tritao/LLDBSharp
 private static void* __CopyValue(Value.Internal native)
 {
     var ret = Marshal.AllocHGlobal(8);
     LLDB.Value.Internal.cctor_1(ret, new global::System.IntPtr(&native));
     return ret.ToPointer();
 }
예제 #3
0
파일: SBValue.cs 프로젝트: tritao/LLDBSharp
 public static Value __CreateInstance(Value.Internal native, bool skipVTables = false)
 {
     return new Value(native, skipVTables);
 }