LLDB.Target.FindGlobalFunctions C# (CSharp) Method

FindGlobalFunctions() public method

Find global functions by their name with pattern matching.

public FindGlobalFunctions ( string name, uint max_matches, LLDB matchtype ) : LLDB.SymbolContextList
name string /// The pattern to search for global or static variables ///
max_matches uint /// Allow the number of matches to be limited to ///
matchtype LLDB /// The match type to use. ///
return LLDB.SymbolContextList
        public LLDB.SymbolContextList FindGlobalFunctions(string name, uint max_matches, LLDB.MatchType matchtype)
        {
            var arg0 = Marshal.StringToHGlobalAnsi(name);
            var arg2 = matchtype;
            var __ret = new LLDB.SymbolContextList.Internal();
            Internal.FindGlobalFunctions_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0, max_matches, arg2);
            Marshal.FreeHGlobal(arg0);
            return LLDB.SymbolContextList.__CreateInstance(__ret);
        }