Mono.Debugger.Backend.LinuxOperatingSystem.GetSectionAddress C# (CSharp) Method

GetSectionAddress() public method

public GetSectionAddress ( string name ) : TargetAddress
name string
return Mono.Debugger.TargetAddress
        public TargetAddress GetSectionAddress(string name)
        {
            foreach (Bfd bfd in bfd_hash.Values) {
                TargetAddress address = bfd.GetSectionAddress (name);
                if (!address.IsNull)
                    return address;
            }

            return TargetAddress.Null;
        }