Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for LoadCmdSegment (0.26 sec)

  1. src/debug/macho/file_test.go

    		[]any{
    			&SegmentHeader{LoadCmdSegment, 0x38, "__PAGEZERO", 0x0, 0x1000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
    			&SegmentHeader{LoadCmdSegment, 0xc0, "__TEXT", 0x1000, 0x1000, 0x0, 0x1000, 0x7, 0x5, 0x2, 0x0},
    			&SegmentHeader{LoadCmdSegment, 0xc0, "__DATA", 0x2000, 0x1000, 0x1000, 0x1000, 0x7, 0x3, 0x2, 0x0},
    			&SegmentHeader{LoadCmdSegment, 0x7c, "__IMPORT", 0x3000, 0x1000, 0x2000, 0x1000, 0x7, 0x7, 0x1, 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

    	LoadCmdDylinker   LoadCmd = 0xf // id dylinker command (not load dylinker command)
    	LoadCmdSegment64  LoadCmd = 0x19
    	LoadCmdRpath      LoadCmd = 0x8000001c
    )
    
    var cmdStrings = []intName{
    	{uint32(LoadCmdSegment), "LoadCmdSegment"},
    	{uint32(LoadCmdThread), "LoadCmdThread"},
    	{uint32(LoadCmdUnixThread), "LoadCmdUnixThread"},
    	{uint32(LoadCmdDylib), "LoadCmdDylib"},
    	{uint32(LoadCmdSegment64), "LoadCmdSegment64"},
    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

    		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:
    			err = machoUpdateLoadCommand(reader, linkseg, linkoffset, &dyldInfoCmd{}, "RebaseOff", "BindOff", "WeakBindOff", "LazyBindOff", "ExportOff")
    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

    				return nil, err
    			}
    			st := new(Dysymtab)
    			st.LoadBytes = LoadBytes(cmddat)
    			st.DysymtabCmd = hdr
    			st.IndirectSyms = x
    			f.Loads = append(f.Loads, st)
    			f.Dysymtab = st
    
    		case LoadCmdSegment:
    			var seg32 Segment32
    			b := bytes.NewReader(cmddat)
    			if err := binary.Read(b, bo, &seg32); 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

    		{"LoadBytes", Type, 0},
    		{"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},
    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 CpuAmd64 Cpu
    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
    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 CpuAmd64 = 16777223
    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
    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