Home | History | Annotate | Download | only in objfile

Lines Matching refs:symbol

37 	// We infer the size of a symbol by looking at where the next symbol begins.
51 N_UNDEF = 0 // An undefined (extern) symbol
52 N_ABS = -1 // An absolute symbol (e_value is a constant, not an address)
53 N_DEBUG = -2 // A debugging symbol
65 return nil, fmt.Errorf("invalid section number in symbol table")
154 func findPESymbol(f *pe.File, name string) (*pe.Symbol, error) {
160 return nil, fmt.Errorf("symbol %s: invalid section number %d", name, s.SectionNumber)
163 return nil, fmt.Errorf("symbol %s: section number %d is larger than max %d", name, s.SectionNumber, len(f.Sections))
167 return nil, fmt.Errorf("no %s symbol found", name)
192 // Look in symbol table for telltale rt0 symbol.