Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for EV_NONE (0.41 sec)

  1. src/debug/elf/elf.go

    // Initial magic number for ELF files.
    const ELFMAG = "\177ELF"
    
    // Version is found in Header.Ident[EI_VERSION] and Header.Version.
    type Version byte
    
    const (
    	EV_NONE    Version = 0
    	EV_CURRENT Version = 1
    )
    
    var versionStrings = []intName{
    	{0, "EV_NONE"},
    	{1, "EV_CURRENT"},
    }
    
    func (i Version) String() string   { return stringName(uint32(i), versionStrings, false) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ET_HIOS", Const, 0},
    		{"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},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg debug/elf, const ET_LOOS Type
    pkg debug/elf, const ET_LOPROC Type
    pkg debug/elf, const ET_NONE Type
    pkg debug/elf, const ET_REL Type
    pkg debug/elf, const EV_CURRENT Version
    pkg debug/elf, const EV_NONE Version
    pkg debug/elf, const NT_FPREGSET NType
    pkg debug/elf, const NT_PRPSINFO NType
    pkg debug/elf, const NT_PRSTATUS NType
    pkg debug/elf, const PF_MASKOS ProgFlag
    pkg debug/elf, const PF_MASKPROC ProgFlag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg debug/elf, const ET_LOOS = 65024
    pkg debug/elf, const ET_LOPROC = 65280
    pkg debug/elf, const ET_NONE = 0
    pkg debug/elf, const ET_REL = 1
    pkg debug/elf, const EV_CURRENT = 1
    pkg debug/elf, const EV_NONE = 0
    pkg debug/elf, const NT_FPREGSET = 2
    pkg debug/elf, const NT_PRPSINFO = 3
    pkg debug/elf, const NT_PRSTATUS = 1
    pkg debug/elf, const PF_MASKOS = 267386880
    pkg debug/elf, const PF_MASKPROC = 4026531840
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top