Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 183 for ioctl (0.17 sec)

  1. src/syscall/zerrors_darwin_amd64.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.3K bytes
    - Viewed (0)
  2. src/syscall/zerrors_netbsd_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
    - 67.1K bytes
    - Viewed (0)
  3. src/syscall/zerrors_netbsd_386.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
    - 67.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

            }
    
            if ( this.disallowCompound == null ) {
                // Samba woes on these
                // Smb2SessionSetupRequest + X -> INTERNAL_ERROR
                // Smb2TreeConnectRequest + IoCtl -> NETWORK_NAME_DELETED
                this.disallowCompound = new HashSet<>(Arrays.asList("Smb2SessionSetupRequest", "Smb2TreeConnectRequest"));
            }
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    	return
    }
    
    //sys	Getcwd(buf []byte) (n int, err error) = SYS___GETCWD
    
    // TODO
    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	return -1, ENOSYS
    }
    
    //sys	ioctl(fd int, req uint, arg uintptr) (err error)
    //sys	ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) = SYS_IOCTL
    
    //sys	sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) = SYS___SYSCTL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. src/syscall/zerrors_netbsd_amd64.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
    - 67.1K bytes
    - Viewed (0)
  7. src/syscall/zerrors_netbsd_arm.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
    - 66.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    		bufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))
    	}
    	r0, _, e1 := Syscall(SYS_GETFSSTAT, uintptr(_p0), bufsize, uintptr(flags))
    	n = int(r0)
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    //sys	ioctl(fd int, req uint, arg uintptr) (err error)
    //sys	ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) = SYS_IOCTL
    
    //sys	sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) = SYS___SYSCTL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    	getresuid(&r, &e, &s)
    	return int(r), int(e), int(s)
    }
    
    func Getresgid() (rgid, egid, sgid int) {
    	var r, e, s _C_int
    	getresgid(&r, &e, &s)
    	return int(r), int(e), int(s)
    }
    
    //sys	ioctl(fd int, req uint, arg uintptr) (err error)
    //sys	ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) = SYS_IOCTL
    
    //sys	sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) = SYS___SYSCTL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	{21, "EISDIR", "is a directory"},
    	{22, "EINVAL", "invalid argument"},
    	{23, "ENFILE", "too many open files in system"},
    	{24, "EMFILE", "too many open files"},
    	{25, "ENOTTY", "inappropriate ioctl for device"},
    	{26, "ETXTBSY", "text file busy"},
    	{27, "EFBIG", "file too large"},
    	{28, "ENOSPC", "no space left on device"},
    	{29, "ESPIPE", "illegal seek"},
    	{30, "EROFS", "read-only file system"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
Back to top