Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DylibCmd (0.07 sec)

  1. 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)
Back to top