Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TypeDylib (0.19 sec)

  1. src/debug/macho/macho.go

    type Type uint32
    
    const (
    	TypeObj    Type = 1
    	TypeExec   Type = 2
    	TypeDylib  Type = 6
    	TypeBundle Type = 8
    )
    
    var typeStrings = []intName{
    	{uint32(TypeObj), "Obj"},
    	{uint32(TypeExec), "Exec"},
    	{uint32(TypeDylib), "Dylib"},
    	{uint32(TypeBundle), "Bundle"},
    }
    
    func (t Type) String() string   { return stringName(uint32(t), typeStrings, false) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  2. api/go1.3.txt

    pkg debug/macho, const MagicFat = 3405691582
    pkg debug/macho, const MagicFat uint32
    pkg debug/macho, const TypeBundle = 8
    pkg debug/macho, const TypeBundle Type
    pkg debug/macho, const TypeDylib = 6
    pkg debug/macho, const TypeDylib Type
    pkg debug/macho, func NewFatFile(io.ReaderAt) (*FatFile, error)
    pkg debug/macho, func OpenFat(string) (*FatFile, error)
    pkg debug/macho, method (*FatFile) Close() error
    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

    		{"Thread", Type, 0},
    		{"Thread.Cmd", Field, 0},
    		{"Thread.Data", Field, 0},
    		{"Thread.Len", Field, 0},
    		{"Thread.Type", Field, 0},
    		{"Type", Type, 0},
    		{"TypeBundle", Const, 3},
    		{"TypeDylib", Const, 3},
    		{"TypeExec", Const, 0},
    		{"TypeObj", Const, 0},
    		{"X86_64_RELOC_BRANCH", Const, 10},
    		{"X86_64_RELOC_GOT", Const, 10},
    		{"X86_64_RELOC_GOT_LOAD", Const, 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