Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 183 for ioctl (0.04 sec)

  1. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.smb2.ioctl;
    
    
    import jcifs.CIFSContext;
    import jcifs.Configuration;
    import jcifs.Encodable;
    import jcifs.internal.smb2.RequestWithFileId;
    import jcifs.internal.smb2.ServerMessageBlock2Request;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 07:13:17 UTC 2018
    - 7.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    }
    
    // IoctlGetIfreqMTU performs the SIOCGIFMTU ioctl operation on fd to get the MTU
    // of the network device specified by ifname.
    func IoctlGetIfreqMTU(fd int, ifname string) (*IfreqMTU, error) {
    	var ifreq IfreqMTU
    	copy(ifreq.Name[:], ifname)
    	err := ioctlPtr(fd, SIOCGIFMTU, unsafe.Pointer(&ifreq))
    	return &ifreq, err
    }
    
    // IoctlSetIfreqMTU performs the SIOCSIFMTU ioctl operation on fd to set the MTU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  3. src/syscall/zerrors_windows.go

    	ENOTSOCK - APPLICATION_ERROR:        "socket operation on non-socket",
    	ENOTSUP - APPLICATION_ERROR:         "operation not supported",
    	ENOTTY - APPLICATION_ERROR:          "inappropriate ioctl for device",
    	ENOTUNIQ - APPLICATION_ERROR:        "name not unique on network",
    	ENXIO - APPLICATION_ERROR:           "no such device or address",
    	EOPNOTSUPP - APPLICATION_ERROR:      "operation not supported",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    func Minor(dev uint64) uint32 {
    	return uint32(__minor(NEWDEV, dev))
    }
    
    /*
     * Expose the ioctl function
     */
    
    //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
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    func (w WaitStatus) CoreDump() bool { return w&0x80 == 0x80 }
    
    func (w WaitStatus) TrapCause() int { return -1 }
    
    //sys	ioctl(fd int, req int, arg uintptr) (err error)
    //sys	ioctlPtr(fd int, req int, arg unsafe.Pointer) (err error) = ioctl
    
    // fcntl must never be called with cmd=F_DUP2FD because it doesn't work on AIX
    // There is no way to create a custom fcntl and to keep //sys fcntl easily,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. src/syscall/zerrors_darwin_arm64.go

    	19:  "operation not supported by device",
    	20:  "not a directory",
    	21:  "is a directory",
    	22:  "invalid argument",
    	23:  "too many open files in system",
    	24:  "too many open files",
    	25:  "inappropriate ioctl for device",
    	26:  "text file busy",
    	27:  "file too large",
    	28:  "no space left on device",
    	29:  "illegal seek",
    	30:  "read-only file system",
    	31:  "too many links",
    	32:  "broken pipe",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go

    func ioctl(fd int, req int, arg uintptr) (err error) {
    	r0, er := C.ioctl(C.int(fd), C.int(req), C.uintptr_t(arg))
    	if r0 == -1 && er != nil {
    		err = er
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ioctlPtr(fd int, req int, arg unsafe.Pointer) (err error) {
    	r0, er := C.ioctl(C.int(fd), C.int(req), C.uintptr_t(uintptr(arg)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	return InotifyInit1(0)
    }
    
    //sys	ioctl(fd int, req uint, arg uintptr) (err error) = SYS_IOCTL
    //sys	ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) = SYS_IOCTL
    
    // ioctl itself should not be exposed directly, but additional get/set functions
    // for specific types are permissible. These are defined in ioctl.go and
    // ioctl_linux.go.
    //
    // The third argument to ioctl is often a pointer but sometimes an integer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    func callioctl(fd int, req int, arg uintptr) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.ioctl(C.int(fd), C.int(req), C.uintptr_t(arg)))
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callioctl_ptr(fd int, req int, arg unsafe.Pointer) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.ioctl(C.int(fd), C.int(req), C.uintptr_t(uintptr(arg))))
    	e1 = syscall.GetErrno()
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	TCSAFLUSH                       = 2
    	TCSETSF                         = 2 // equivalent to TCSAFLUSH for tcsetattr
    	TCGETS                          = 3 // not defined in ioctl.h -- zos golang only
    	TCIFLUSH                        = 0
    	TCOFLUSH                        = 1
    	TCIOFLUSH                       = 2
    	TCOOFF                          = 0
    	TCOON                           = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top