type xcoffFile … func openXcoff(r io.ReaderAt) (rawFile, error) { … } func (f *xcoffFile) symbols() ([]Sym, error) { … } func (f *xcoffFile) pcln() (textStart uint64, symtab, pclntab []byte, err error) { … } func (f *xcoffFile) text() (textStart uint64, text []byte, err error) { … } func findXCOFFSymbol(f *xcoff.File, name string) (*xcoff.Symbol, error) { … } func loadXCOFFTable(f *xcoff.File, sname, ename string) ([]byte, error) { … } func (f *xcoffFile) goarch() string { … } func (f *xcoffFile) loadAddress() (uint64, error) { … } func (f *xcoffFile) dwarf() (*dwarf.Data, error) { … }