Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ErrNoSymbols (0.46 sec)

  1. src/debug/elf/file.go

    }
    
    // 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)
    	if symtabSection == nil {
    		return nil, nil, ErrNoSymbols
    	}
    
    	data, err := symtabSection.Data()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		// someone passes a kernel path that doesn't contain "vmlinux" AND
    		// (2) _stext is page-aligned AND (3) _stext is not at Vaddr
    		symbols, err := ef.Symbols()
    		if err != nil && err != elf.ErrNoSymbols {
    			return nil, err
    		}
    
    		// The kernel relocation symbol (the mapping start address) can be either
    		// _text or _stext. When profiles are generated by `perf`, which one was used is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ET_HIPROC", Const, 0},
    		{"ET_LOOS", Const, 0},
    		{"ET_LOPROC", Const, 0},
    		{"ET_NONE", Const, 0},
    		{"ET_REL", Const, 0},
    		{"EV_CURRENT", Const, 0},
    		{"EV_NONE", Const, 0},
    		{"ErrNoSymbols", Var, 4},
    		{"File", Type, 0},
    		{"File.FileHeader", Field, 0},
    		{"File.Progs", Field, 0},
    		{"File.Sections", Field, 0},
    		{"FileHeader", Type, 0},
    		{"FileHeader.ABIVersion", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top