Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LoadCmd (0.25 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. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(FatArch).ImportedSymbols", Method, 3},
    		{"(FatArch).Section", Method, 3},
    		{"(FatArch).Segment", Method, 3},
    		{"(LoadBytes).Raw", Method, 0},
    		{"(LoadCmd).GoString", Method, 0},
    		{"(LoadCmd).String", Method, 0},
    		{"(RelocTypeARM).GoString", Method, 10},
    		{"(RelocTypeARM).String", Method, 10},
    		{"(RelocTypeARM64).GoString", Method, 10},
    		{"(RelocTypeARM64).String", Method, 10},
    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