Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IoctlSetInt (0.19 sec)

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

    	"runtime"
    	"unsafe"
    )
    
    // ioctl itself should not be exposed directly, but additional get/set
    // functions for specific types are permissible.
    
    // IoctlSetInt performs an ioctl operation which sets an integer value
    // on fd, using the specified request number.
    func IoctlSetInt(fd int, req int, value int) error {
    	return ioctl(fd, req, uintptr(value))
    }
    
    // IoctlSetWinsize performs an ioctl on fd with a *Winsize argument.
    //
    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

    import (
    	"unsafe"
    )
    
    // ioctl itself should not be exposed directly, but additional get/set
    // functions for specific types are permissible.
    
    // IoctlSetInt performs an ioctl operation which sets an integer value
    // on fd, using the specified request number.
    func IoctlSetInt(fd int, req int, value int) error {
    	return ioctl(fd, req, uintptr(value))
    }
    
    // IoctlSetPointerInt performs an ioctl operation which sets an
    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

    import (
    	"unsafe"
    )
    
    // ioctl itself should not be exposed directly, but additional get/set
    // functions for specific types are permissible.
    
    // IoctlSetInt performs an ioctl operation which sets an integer value
    // on fd, using the specified request number.
    func IoctlSetInt(fd int, req uint, value int) error {
    	return ioctl(fd, req, uintptr(value))
    }
    
    // IoctlSetPointerInt performs an ioctl operation which sets an
    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