Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 273 for fd (0.02 sec)

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

    	SYS_MKFIFOAT       = 319 // { int sys_mkfifoat(int fd, const char *path, mode_t mode); }
    	SYS_MKNODAT        = 320 // { int sys_mknodat(int fd, const char *path, mode_t mode, dev_t dev); }
    	SYS_OPENAT         = 321 // { int sys_openat(int fd, const char *path, int flags, ... mode_t mode); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_netbsd_arm.go

    func futimes(fd int, timeval *[2]Timeval) (err error) {
    	_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fcntl(fd int, cmd int, arg int) (val int, err error) {
    	r0, _, e1 := Syscall(SYS_FCNTL, uintptr(fd), uintptr(cmd), uintptr(arg))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_netbsd_arm64.go

    func futimes(fd int, timeval *[2]Timeval) (err error) {
    	_, _, e1 := Syscall(SYS_FUTIMES, uintptr(fd), uintptr(unsafe.Pointer(timeval)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fcntl(fd int, cmd int, arg int) (val int, err error) {
    	r0, _, e1 := Syscall(SYS_FCNTL, uintptr(fd), uintptr(cmd), uintptr(arg))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 30K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_freebsd_arm.go

    	SYS_FACCESSAT                = 489 // { int faccessat(int fd, char *path, int amode, \
    	SYS_FCHMODAT                 = 490 // { int fchmodat(int fd, char *path, mode_t mode, \
    	SYS_FCHOWNAT                 = 491 // { int fchownat(int fd, char *path, uid_t uid, \
    	SYS_FEXECVE                  = 492 // { int fexecve(int fd, char **argv, \
    	SYS_FUTIMESAT                = 494 // { int futimesat(int fd, char *path, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go

    func Fstatfs(fd int, buf *Statfs_t) (err error) {
    	_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Ftruncate(fd int, length int64) (err error) {
    	_, _, e1 := Syscall(SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_FCHOWNAT             = 464 // { int|sys||fchownat(int fd, const char *path, uid_t owner, gid_t group, int flag); }
    	SYS_FEXECVE              = 465 // { int|sys||fexecve(int fd, char * const *argp, char * const *envp); }
    	SYS_FSTATAT              = 466 // { int|sys||fstatat(int fd, const char *path, struct stat *buf, int flag); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_netbsd_arm64.go

    	SYS_FCHOWNAT             = 464 // { int|sys||fchownat(int fd, const char *path, uid_t owner, gid_t group, int flag); }
    	SYS_FEXECVE              = 465 // { int|sys||fexecve(int fd, char * const *argp, char * const *envp); }
    	SYS_FSTATAT              = 466 // { int|sys||fstatat(int fd, const char *path, struct stat *buf, int flag); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_MKDIRAT                = 524 // { int mkdirat(int fd, char *path, mode_t mode); }
    	SYS_MKFIFOAT               = 525 // { int mkfifoat(int fd, char *path, mode_t mode); }
    	SYS_MKNODAT                = 526 // { int mknodat(int fd, char *path, mode_t mode, \
    	SYS_READLINKAT             = 527 // { int readlinkat(int fd, char *path, char *buf, \
    	SYS_SYMLINKAT              = 528 // { int symlinkat(char *path1, int fd, char *path2); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_openbsd_arm.go

    	SYS_FACCESSAT      = 313 // { int sys_faccessat(int fd, const char *path, \
    	SYS_FCHMODAT       = 314 // { int sys_fchmodat(int fd, const char *path, \
    	SYS_FCHOWNAT       = 315 // { int sys_fchownat(int fd, const char *path, \
    	SYS_LINKAT         = 317 // { int sys_linkat(int fd1, const char *path1, int fd2, \
    	SYS_MKDIRAT        = 318 // { int sys_mkdirat(int fd, const char *path, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.5K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_openbsd_386.go

    	SYS_READV          = 120 // { ssize_t sys_readv(int fd, \
    	SYS_WRITEV         = 121 // { ssize_t sys_writev(int fd, \
    	SYS_FCHOWN         = 123 // { int sys_fchown(int fd, uid_t uid, gid_t gid); }
    	SYS_KILL           = 122 // { int sys_kill(int pid, int signum); }
    	SYS_FCHMOD         = 124 // { int sys_fchmod(int fd, mode_t mode); }
    	SYS_SETREUID       = 126 // { int sys_setreuid(uid_t ruid, uid_t euid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
Back to top