LLDB.Debugger.CreateTargetWithFileAndTargetTriple C# (CSharp) Method

CreateTargetWithFileAndTargetTriple() public method

public CreateTargetWithFileAndTargetTriple ( string filename, string target_triple ) : LLDB.Target
filename string
target_triple string
return LLDB.Target
        public LLDB.Target CreateTargetWithFileAndTargetTriple(string filename, string target_triple)
        {
            var arg0 = Marshal.StringToHGlobalAnsi(filename);
            var arg1 = Marshal.StringToHGlobalAnsi(target_triple);
            var __ret = new LLDB.Target.Internal();
            Internal.CreateTargetWithFileAndTargetTriple_0((__Instance + __PointerAdjustment), new IntPtr(&__ret), arg0, arg1);
            Marshal.FreeHGlobal(arg0);
            Marshal.FreeHGlobal(arg1);
            return LLDB.Target.__CreateInstance(__ret);
        }