Mono.Debugger.Backend.DwarfReader.DwarfTargetMethod.CheckLoaded C# (CSharp) Method

CheckLoaded() public method

public CheckLoaded ( ) : bool
return bool
            public bool CheckLoaded()
            {
                if (!subprog.dwarf.bfd.IsLoaded)
                    return false;

                ISymbolContainer sc = (ISymbolContainer) subprog;
                if (sc.IsContinuous)
                    SetAddresses (sc.StartAddress, sc.EndAddress);

                SetLineNumbers (engine);

                read_line_numbers ();

                return true;
            }