LLDB.Module.GetTypes C# (CSharp) Method

GetTypes() public method

Get all types matching

from debug info in this

module.

public GetTypes ( uint type_mask ) : LLDB.TypeList
type_mask uint /// A bitfield that consists of one or more bits logically OR'ed /// together from the lldb::TypeClass enumeration. This allows /// you to request only structure types, or only class, struct /// and union types. Passing in lldb::eTypeClassAny will return /// all types found in the debug information for this module. ///
return LLDB.TypeList
        public LLDB.TypeList GetTypes(uint type_mask)
        {
            var __ret = new LLDB.TypeList.Internal();
            Internal.GetTypes_0((__Instance + __PointerAdjustment), new IntPtr(&__ret), type_mask);
            return LLDB.TypeList.__CreateInstance(__ret);
        }