Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for ioctl (0.04 sec)

  1. src/syscall/zsyscall_openbsd_arm.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ioctl(fd int, req int, arg int) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_ioctl_trampoline), uintptr(fd), uintptr(req), uintptr(arg))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_ioctl_trampoline()
    
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS___SETLOGIN           = 50  // { int|sys||__setlogin(const char *namebuf); }
    	SYS_ACCT                 = 51  // { int|sys||acct(const char *path); }
    	SYS_IOCTL                = 54  // { int|sys||ioctl(int fd, u_long com, ... void *data); }
    	SYS_REVOKE               = 56  // { int|sys||revoke(const char *path); }
    	SYS_SYMLINK              = 57  // { int|sys||symlink(const char *path, const char *link); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  3. src/runtime/sys_darwin_arm64.s

    	// (Because ios decided not to adhere to the standard arm64 calling convention, sigh...)
    	// The only libSystem calls we support that are vararg are open, fcntl, and ioctl,
    	// which are all of the form fn(x, y, ...). So we just need to put the 3rd arg
    	// on the stack as well.
    	// If we ever have other vararg libSystem calls, we might need to handle more cases.
    	MOVD	R2, (RSP)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_ACCT                   = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK            = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }
    	SYS_IOCTL                  = 54  // { int ioctl(int fd, u_long com, caddr_t data); }
    	SYS_REBOOT                 = 55  // { int reboot(int opt); }
    	SYS_REVOKE                 = 56  // { int revoke(char *path); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS___SETLOGIN           = 50  // { int|sys||__setlogin(const char *namebuf); }
    	SYS_ACCT                 = 51  // { int|sys||acct(const char *path); }
    	SYS_IOCTL                = 54  // { int|sys||ioctl(int fd, u_long com, ... void *data); }
    	SYS_REVOKE               = 56  // { int|sys||revoke(const char *path); }
    	SYS_SYMLINK              = 57  // { int|sys||symlink(const char *path, const char *link); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_netbsd_arm64.go

    	SYS___SETLOGIN           = 50  // { int|sys||__setlogin(const char *namebuf); }
    	SYS_ACCT                 = 51  // { int|sys||acct(const char *path); }
    	SYS_IOCTL                = 54  // { int|sys||ioctl(int fd, u_long com, ... void *data); }
    	SYS_REVOKE               = 56  // { int|sys||revoke(const char *path); }
    	SYS_SYMLINK              = 57  // { int|sys||symlink(const char *path, const char *link); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_openbsd_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ioctl(fd int, req int, arg int) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_ioctl_trampoline), uintptr(fd), uintptr(req), uintptr(arg))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_ioctl_trampoline()
    
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  8. src/syscall/zsyscall_openbsd_arm64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ioctl(fd int, req int, arg int) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_ioctl_trampoline), uintptr(fd), uintptr(req), uintptr(arg))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_ioctl_trampoline()
    
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_openbsd_ppc64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ioctl(fd int, req int, arg int) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_ioctl_trampoline), uintptr(fd), uintptr(req), uintptr(arg))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_ioctl_trampoline()
    
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS___SETLOGIN           = 50  // { int|sys||__setlogin(const char *namebuf); }
    	SYS_ACCT                 = 51  // { int|sys||acct(const char *path); }
    	SYS_IOCTL                = 54  // { int|sys||ioctl(int fd, u_long com, ... void *data); }
    	SYS_REVOKE               = 56  // { int|sys||revoke(const char *path); }
    	SYS_SYMLINK              = 57  // { int|sys||symlink(const char *path, const char *link); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
Back to top