Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DylibCmd (0.19 sec)

  1. src/debug/macho/macho.go

    		Indirectsymoff uint32
    		Nindirectsyms  uint32
    		Extreloff      uint32
    		Nextrel        uint32
    		Locreloff      uint32
    		Nlocrel        uint32
    	}
    
    	// A DylibCmd is a Mach-O load dynamic library command.
    	DylibCmd struct {
    		Cmd            LoadCmd
    		Len            uint32
    		Name           uint32
    		Time           uint32
    		CurrentVersion uint32
    		CompatVersion  uint32
    	}
    
    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/debug/macho/file.go

    			}
    			l.Path = cstring(cmddat[hdr.Path:])
    			l.LoadBytes = LoadBytes(cmddat)
    			f.Loads = append(f.Loads, l)
    
    		case LoadCmdDylib:
    			var hdr DylibCmd
    			b := bytes.NewReader(cmddat)
    			if err := binary.Read(b, bo, &hdr); err != nil {
    				return nil, err
    			}
    			l := new(Dylib)
    			if hdr.Name >= uint32(len(cmddat)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Dylib.LoadBytes", Field, 0},
    		{"Dylib.Name", Field, 0},
    		{"Dylib.Time", Field, 0},
    		{"DylibCmd", Type, 0},
    		{"DylibCmd.Cmd", Field, 0},
    		{"DylibCmd.CompatVersion", Field, 0},
    		{"DylibCmd.CurrentVersion", Field, 0},
    		{"DylibCmd.Len", Field, 0},
    		{"DylibCmd.Name", Field, 0},
    		{"DylibCmd.Time", Field, 0},
    		{"Dysymtab", Type, 0},
    		{"Dysymtab.DysymtabCmd", Field, 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)
  4. api/go1.txt

    pkg debug/macho, type DylibCmd struct
    pkg debug/macho, type DylibCmd struct, Cmd LoadCmd
    pkg debug/macho, type DylibCmd struct, CompatVersion uint32
    pkg debug/macho, type DylibCmd struct, CurrentVersion uint32
    pkg debug/macho, type DylibCmd struct, Len uint32
    pkg debug/macho, type DylibCmd struct, Name uint32
    pkg debug/macho, type DylibCmd struct, Time uint32
    pkg debug/macho, type Dysymtab struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top