Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for LoadCmdSegment64 (0.33 sec)

  1. src/debug/macho/file_test.go

    		[]any{
    			&SegmentHeader{LoadCmdSegment64, 0x48, "__PAGEZERO", 0x0, 0x100000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
    			&SegmentHeader{LoadCmdSegment64, 0x1d8, "__TEXT", 0x100000000, 0x1000, 0x0, 0x1000, 0x7, 0x5, 0x5, 0x0},
    			&SegmentHeader{LoadCmdSegment64, 0x138, "__DATA", 0x100001000, 0x1000, 0x1000, 0x1000, 0x7, 0x3, 0x3, 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  2. src/debug/macho/macho.go

    	LoadCmdSegment64  LoadCmd = 0x19
    	LoadCmdRpath      LoadCmd = 0x8000001c
    )
    
    var cmdStrings = []intName{
    	{uint32(LoadCmdSegment), "LoadCmdSegment"},
    	{uint32(LoadCmdThread), "LoadCmdThread"},
    	{uint32(LoadCmdUnixThread), "LoadCmdUnixThread"},
    	{uint32(LoadCmdDylib), "LoadCmdDylib"},
    	{uint32(LoadCmdSegment64), "LoadCmdSegment64"},
    	{uint32(LoadCmdRpath), "LoadCmdRpath"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	for i := uint32(0); i < exem.Ncmd; i++ {
    		cmd, err := reader.Next()
    		if err != nil {
    			return err
    		}
    		linkoffset := uint64(linkstart) - linkseg.Offset
    		switch cmd.Cmd {
    		case macho.LoadCmdSegment64:
    			err = machoUpdateSegment(reader, linkseg, linkoffset)
    		case macho.LoadCmdSegment:
    			panic("unexpected 32-bit segment")
    		case LC_DYLD_INFO, LC_DYLD_INFO_ONLY:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/debug/macho/file.go

    				sh.Align = sh32.Align
    				sh.Reloff = sh32.Reloff
    				sh.Nreloc = sh32.Nreloc
    				sh.Flags = sh32.Flags
    				if err := f.pushSection(sh, r); err != nil {
    					return nil, err
    				}
    			}
    
    		case LoadCmdSegment64:
    			var seg64 Segment64
    			b := bytes.NewReader(cmddat)
    			if err := binary.Read(b, bo, &seg64); err != nil {
    				return nil, err
    			}
    			s = new(Segment)
    			s.LoadBytes = cmddat
    			s.Cmd = cmd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"LoadCmd", Type, 0},
    		{"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},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg debug/macho, const LoadCmdDylib LoadCmd
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg debug/macho, const LoadCmdDylib = 12
    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
    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