Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for LoadCmdSymtab (0.4 sec)

  1. src/debug/macho/macho.go

    func (i Cpu) GoString() string { return stringName(uint32(i), cpuStrings, true) }
    
    // A LoadCmd is a Mach-O load command.
    type LoadCmd uint32
    
    const (
    	LoadCmdSegment    LoadCmd = 0x1
    	LoadCmdSymtab     LoadCmd = 0x2
    	LoadCmdThread     LoadCmd = 0x4
    	LoadCmdUnixThread LoadCmd = 0x5 // thread+stack
    	LoadCmdDysymtab   LoadCmd = 0xb
    	LoadCmdDylib      LoadCmd = 0xc // load dylib command
    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. src/cmd/link/internal/ld/macho_combine_dwarf.go

    		case LC_DYLD_INFO, LC_DYLD_INFO_ONLY:
    			err = machoUpdateLoadCommand(reader, linkseg, linkoffset, &dyldInfoCmd{}, "RebaseOff", "BindOff", "WeakBindOff", "LazyBindOff", "ExportOff")
    		case macho.LoadCmdSymtab:
    			err = machoUpdateLoadCommand(reader, linkseg, linkoffset, &macho.SymtabCmd{}, "Symoff", "Stroff")
    		case macho.LoadCmdDysymtab:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/debug/macho/file.go

    			l.Time = hdr.Time
    			l.CurrentVersion = hdr.CurrentVersion
    			l.CompatVersion = hdr.CompatVersion
    			l.LoadBytes = LoadBytes(cmddat)
    			f.Loads = append(f.Loads, l)
    
    		case LoadCmdSymtab:
    			var hdr SymtabCmd
    			b := bytes.NewReader(cmddat)
    			if err := binary.Read(b, bo, &hdr); err != nil {
    				return nil, err
    			}
    			strtab, err := saferio.ReadDataAt(r, uint64(hdr.Strsize), int64(hdr.Stroff))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"LoadCmdDylib", Const, 0},
    		{"LoadCmdDylinker", Const, 0},
    		{"LoadCmdDysymtab", Const, 0},
    		{"LoadCmdRpath", Const, 10},
    		{"LoadCmdSegment", Const, 0},
    		{"LoadCmdSegment64", Const, 0},
    		{"LoadCmdSymtab", Const, 0},
    		{"LoadCmdThread", Const, 0},
    		{"LoadCmdUnixThread", Const, 0},
    		{"Magic32", Const, 0},
    		{"Magic64", Const, 0},
    		{"MagicFat", Const, 3},
    		{"NewFatFile", Func, 3},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg debug/macho, const LoadCmdDylinker LoadCmd
    pkg debug/macho, const LoadCmdDysymtab LoadCmd
    pkg debug/macho, const LoadCmdSegment LoadCmd
    pkg debug/macho, const LoadCmdSegment64 LoadCmd
    pkg debug/macho, const LoadCmdSymtab LoadCmd
    pkg debug/macho, const LoadCmdThread LoadCmd
    pkg debug/macho, const LoadCmdUnixThread LoadCmd
    pkg debug/macho, const Magic32 uint32
    pkg debug/macho, const Magic64 uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg debug/macho, const LoadCmdDylinker = 15
    pkg debug/macho, const LoadCmdDysymtab = 11
    pkg debug/macho, const LoadCmdSegment = 1
    pkg debug/macho, const LoadCmdSegment64 = 25
    pkg debug/macho, const LoadCmdSymtab = 2
    pkg debug/macho, const LoadCmdThread = 4
    pkg debug/macho, const LoadCmdUnixThread = 5
    pkg debug/macho, const Magic32 = 4277009102
    pkg debug/macho, const Magic64 = 4277009103
    pkg debug/macho, const TypeExec = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top