LLDB.Target.FindGlobalVariables C# (CSharp) Method

FindGlobalVariables() public method

Find global and static variables by name.

public FindGlobalVariables ( string name, uint max_matches ) : LLDB.ValueList
name string /// The name of the global or static variable we are looking /// for. ///
max_matches uint /// Allow the number of matches to be limited to ///
return LLDB.ValueList
        public LLDB.ValueList FindGlobalVariables(string name, uint max_matches)
        {
            var arg0 = Marshal.StringToHGlobalAnsi(name);
            var __ret = new LLDB.ValueList.Internal();
            Internal.FindGlobalVariables_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0, max_matches);
            Marshal.FreeHGlobal(arg0);
            return LLDB.ValueList.__CreateInstance(__ret);
        }

Same methods

Target::FindGlobalVariables ( string name, uint max_matches, LLDB matchtype ) : LLDB.ValueList