LLDB.Module.FindFunctions C# (CSharp) Method

FindFunctions() public method

Find functions by name.

public FindFunctions ( string name, uint name_type_mask ) : LLDB.SymbolContextList
name string /// The name of the function we are looking for. ///
name_type_mask uint /// A logical OR of one or more FunctionNameType enum bits that /// indicate what kind of names should be used when doing the /// lookup. Bits include fully qualified names, base names, /// C++ methods, or ObjC selectors. /// See FunctionNameType for more details. ///
return LLDB.SymbolContextList
        public LLDB.SymbolContextList FindFunctions(string name, uint name_type_mask)
        {
            var arg0 = Marshal.StringToHGlobalAnsi(name);
            var __ret = new LLDB.SymbolContextList.Internal();
            Internal.FindFunctions_0((__Instance + __PointerAdjustment), new IntPtr(&__ret), arg0, name_type_mask);
            Marshal.FreeHGlobal(arg0);
            return LLDB.SymbolContextList.__CreateInstance(__ret);
        }