Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/debug/macho/fat.go

    type FatFile struct {
    	Magic  uint32
    	Arches []FatArch
    	closer io.Closer
    }
    
    // A FatArchHeader represents a fat header for a specific image architecture.
    type FatArchHeader struct {
    	Cpu    Cpu
    	SubCpu uint32
    	Offset uint32
    	Size   uint32
    	Align  uint32
    }
    
    const fatArchHeaderSize = 5 * 4
    
    // A FatArch is a Mach-O File inside a FatFile.
    type FatArch struct {
    	FatArchHeader
    	*File
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. api/go1.3.txt

    pkg debug/macho, method (FatArch) Close() error
    pkg debug/macho, method (FatArch) DWARF() (*dwarf.Data, error)
    pkg debug/macho, method (FatArch) ImportedLibraries() ([]string, error)
    pkg debug/macho, method (FatArch) ImportedSymbols() ([]string, error)
    pkg debug/macho, method (FatArch) Section(string) *Section
    pkg debug/macho, method (FatArch) Segment(string) *Segment
    pkg debug/macho, type FatArch struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(Cpu).String", Method, 0},
    		{"(Dylib).Raw", Method, 0},
    		{"(Dysymtab).Raw", Method, 0},
    		{"(FatArch).Close", Method, 3},
    		{"(FatArch).DWARF", Method, 3},
    		{"(FatArch).ImportedLibraries", Method, 3},
    		{"(FatArch).ImportedSymbols", Method, 3},
    		{"(FatArch).Section", Method, 3},
    		{"(FatArch).Segment", Method, 3},
    		{"(LoadBytes).Raw", Method, 0},
    		{"(LoadCmd).GoString", Method, 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