type elfFile … func openElf(r io.ReaderAt) (rawFile, error) { … } func (f *elfFile) symbols() ([]Sym, error) { … } func (f *elfFile) pcln() (textStart uint64, symtab, pclntab []byte, err error) { … } func (f *elfFile) text() (textStart uint64, text []byte, err error) { … } func (f *elfFile) goarch() string { … } func (f *elfFile) loadAddress() (uint64, error) { … } func (f *elfFile) dwarf() (*dwarf.Data, error) { … } func (f *elfFile) symbolData(start, end string) []byte { … }