Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LoadCmd (0.09 sec)

  1. src/cmd/link/internal/ld/macho_combine_dwarf.go

    package ld
    
    import (
    	"bytes"
    	"compress/zlib"
    	"debug/macho"
    	"encoding/binary"
    	"fmt"
    	"io"
    	"os"
    	"reflect"
    	"unsafe"
    )
    
    type loadCmd struct {
    	Cmd macho.LoadCmd
    	Len uint32
    }
    
    type dyldInfoCmd struct {
    	Cmd                      macho.LoadCmd
    	Len                      uint32
    	RebaseOff, RebaseLen     uint32
    	BindOff, BindLen         uint32
    	WeakBindOff, WeakBindLen uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/debug/macho/file.go

    type LoadBytes []byte
    
    func (b LoadBytes) Raw() []byte { return b }
    
    // A SegmentHeader is the header for a Mach-O 32-bit or 64-bit load segment command.
    type SegmentHeader struct {
    	Cmd     LoadCmd
    	Len     uint32
    	Name    string
    	Addr    uint64
    	Memsz   uint64
    	Offset  uint64
    	Filesz  uint64
    	Maxprot uint32
    	Prot    uint32
    	Nsect   uint32
    	Flag    uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. api/go1.10.txt

    pkg debug/macho, const GENERIC_RELOC_VANILLA = 0
    pkg debug/macho, const GENERIC_RELOC_VANILLA RelocTypeGeneric
    pkg debug/macho, const LoadCmdRpath = 2147483676
    pkg debug/macho, const LoadCmdRpath LoadCmd
    pkg debug/macho, const X86_64_RELOC_BRANCH = 2
    pkg debug/macho, const X86_64_RELOC_BRANCH RelocTypeX86_64
    pkg debug/macho, const X86_64_RELOC_GOT = 4
    pkg debug/macho, const X86_64_RELOC_GOT RelocTypeX86_64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
Back to top