Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ioctlPtrRet (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    //sys	ioctlRet(fd int, req int, arg uintptr) (ret int, err error) = libc.ioctl
    //sys	ioctlPtrRet(fd int, req int, arg unsafe.Pointer) (ret int, err error) = libc.ioctl
    
    func ioctl(fd int, req int, arg uintptr) (err error) {
    	_, err = ioctlRet(fd, req, arg)
    	return err
    }
    
    func ioctlPtr(fd int, req int, arg unsafe.Pointer) (err error) {
    	_, err = ioctlPtrRet(fd, req, arg)
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    	ret = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ioctlPtrRet(fd int, req int, arg unsafe.Pointer) (ret int, err error) {
    	r0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procioctl)), 3, uintptr(fd), uintptr(req), uintptr(arg), 0, 0, 0)
    	ret = int(r0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
Back to top