Home | History | Annotate | Download | only in pe

Lines Matching refs:symbol

15 // COFFSymbol represents single COFF symbol table record.
34 return nil, fmt.Errorf("fail to seek to symbol table: %v", err)
39 return nil, fmt.Errorf("fail to read symbol table: %v", err)
44 // isSymNameOffset checks symbol name if it is encoded as offset into string table.
52 // FullName finds real name of symbol sym. Normally name is stored
62 func removeAuxSymbols(allsyms []COFFSymbol, st StringTable) ([]*Symbol, error) {
66 syms := make([]*Symbol, 0)
78 s := &Symbol{
90 // Symbol is similar to COFFSymbol with Name field replaced
91 // by Go string. Symbol also does not have NumberOfAuxSymbols.
92 type Symbol struct {