Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ProgType (0.39 sec)

  1. doc/next/6-stdlib/99-minor/debug/elf/66054.md

    The `debug/elf` package now defines [PT_OPENBSD_NOBTCFI]. This [ProgType] is
    used to disable Branch Tracking Control Flow Integrity (BTCFI) enforcement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 173 bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    // Prog.Type
    type ProgType int
    
    const (
    	PT_NULL    ProgType = 0 /* Unused entry. */
    	PT_LOAD    ProgType = 1 /* Loadable segment. */
    	PT_DYNAMIC ProgType = 2 /* Dynamic linking information segment. */
    	PT_INTERP  ProgType = 3 /* Pathname of interpreter. */
    	PT_NOTE    ProgType = 4 /* Auxiliary information. */
    	PT_SHLIB   ProgType = 5 /* Reserved (not used). */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/cmd/internal/buildid/buildid_test.go

    			for i := 0; i < phnum; i++ {
    				var phdr elf.Prog64
    				if err := binary.Read(bytes.NewReader(data[phoff:]), order, &phdr); err != nil {
    					t.Error(err)
    					continue
    				}
    
    				if elf.ProgType(phdr.Type) == elf.PT_NOTE {
    					// Increase the size so we keep
    					// reading notes.
    					order.PutUint64(data[phoff+4*8:], phdr.Filesz+1)
    
    					// Clobber the Align field to zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. api/go1.23.txt

    pkg crypto/x509, method (OID) MarshalText() ([]uint8, error) #66249
    pkg debug/elf, const PT_OPENBSD_NOBTCFI = 1705237480 #66054
    pkg debug/elf, const PT_OPENBSD_NOBTCFI ProgType #66054
    pkg debug/elf, const STT_GNU_IFUNC = 10 #66836
    pkg debug/elf, const STT_GNU_IFUNC SymType #66836
    pkg debug/elf, const STT_RELC = 8 #66836
    pkg debug/elf, const STT_RELC SymType #66836
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. src/debug/elf/file.go

    			return zrd(fr)
    		},
    		size: int64(s.Size),
    	}
    }
    
    // A ProgHeader represents a single ELF program header.
    type ProgHeader struct {
    	Type   ProgType
    	Flags  ProgFlag
    	Off    uint64
    	Vaddr  uint64
    	Paddr  uint64
    	Filesz uint64
    	Memsz  uint64
    	Align  uint64
    }
    
    // A Prog represents a single ELF program header in an ELF binary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg debug/elf, const PT_GNU_MBIND_HI = 1685386580
    pkg debug/elf, const PT_GNU_MBIND_HI ProgType
    pkg debug/elf, const PT_GNU_MBIND_LO = 1685382485
    pkg debug/elf, const PT_GNU_MBIND_LO ProgType
    pkg debug/elf, const PT_GNU_PROPERTY = 1685382483
    pkg debug/elf, const PT_GNU_PROPERTY ProgType
    pkg debug/elf, const PT_GNU_RELRO = 1685382482
    pkg debug/elf, const PT_GNU_RELRO ProgType
    pkg debug/elf, const PT_GNU_STACK = 1685382481
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg debug/elf, const PT_DYNAMIC ProgType
    pkg debug/elf, const PT_HIOS ProgType
    pkg debug/elf, const PT_HIPROC ProgType
    pkg debug/elf, const PT_INTERP ProgType
    pkg debug/elf, const PT_LOAD ProgType
    pkg debug/elf, const PT_LOOS ProgType
    pkg debug/elf, const PT_LOPROC ProgType
    pkg debug/elf, const PT_NOTE ProgType
    pkg debug/elf, const PT_NULL ProgType
    pkg debug/elf, const PT_PHDR ProgType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(OSABI).GoString", Method, 0},
    		{"(OSABI).String", Method, 0},
    		{"(Prog).ReadAt", Method, 0},
    		{"(ProgFlag).GoString", Method, 0},
    		{"(ProgFlag).String", Method, 0},
    		{"(ProgType).GoString", Method, 0},
    		{"(ProgType).String", Method, 0},
    		{"(R_386).GoString", Method, 0},
    		{"(R_386).String", Method, 0},
    		{"(R_390).GoString", Method, 7},
    		{"(R_390).String", Method, 7},
    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