Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IoctlGetInt (0.2 sec)

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

    	err := Tcsetattr(fd, int(req), value)
    	runtime.KeepAlive(value)
    	return err
    }
    
    // IoctlGetInt performs an ioctl operation which gets an integer value
    // from fd, using the specified request number.
    //
    // A few ioctl requests use the return value as an output parameter;
    // for those, IoctlRetInt should be used instead of this function.
    func IoctlGetInt(fd int, req int) (int, error) {
    	var value int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ioctl_signed.go

    	return ioctlPtr(fd, req, unsafe.Pointer(value))
    }
    
    // IoctlGetInt performs an ioctl operation which gets an integer value
    // from fd, using the specified request number.
    //
    // A few ioctl requests use the return value as an output parameter;
    // for those, IoctlRetInt should be used instead of this function.
    func IoctlGetInt(fd int, req int) (int, error) {
    	var value int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ioctl_unsigned.go

    	return ioctlPtr(fd, req, unsafe.Pointer(value))
    }
    
    // IoctlGetInt performs an ioctl operation which gets an integer value
    // from fd, using the specified request number.
    //
    // A few ioctl requests use the return value as an output parameter;
    // for those, IoctlRetInt should be used instead of this function.
    func IoctlGetInt(fd int, req uint) (int, error) {
    	var value int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top