Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getSymbols32 (0.22 sec)

  1. src/debug/elf/file.go

    		return f.getSymbols64(typ)
    
    	case ELFCLASS32:
    		return f.getSymbols32(typ)
    	}
    
    	return nil, nil, errors.New("not implemented")
    }
    
    // ErrNoSymbols is returned by [File.Symbols] and [File.DynamicSymbols]
    // if there is no such section in the File.
    var ErrNoSymbols = errors.New("no symbol section")
    
    func (f *File) getSymbols32(typ SectionType) ([]Symbol, []byte, error) {
    	symtabSection := f.SectionByType(typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top