LLDB.Module.FindSymbols C# (CSharp) Method

FindSymbols() public method

public FindSymbols ( string name, LLDB type ) : LLDB.SymbolContextList
name string
type LLDB
return LLDB.SymbolContextList
        public LLDB.SymbolContextList FindSymbols(string name, LLDB.SymbolType type)
        {
            var arg0 = Marshal.StringToHGlobalAnsi(name);
            var arg1 = type;
            var __ret = new LLDB.SymbolContextList.Internal();
            Internal.FindSymbols_0((__Instance + __PointerAdjustment), new IntPtr(&__ret), arg0, arg1);
            Marshal.FreeHGlobal(arg0);
            return LLDB.SymbolContextList.__CreateInstance(__ret);
        }