Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 150 for fchownat (0.13 sec)

  1. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_FSTATAT                = 505 // { int fstatat(int fd, char *path, 	\
    	SYS_FCHMODAT               = 506 // { int fchmodat(int fd, char *path, int mode, \
    	SYS_FCHOWNAT               = 507 // { int fchownat(int fd, char *path, int uid, int gid, \
    	SYS_UNLINKAT               = 508 // { int unlinkat(int fd, char *path, int flags); }
    	SYS_FACCESSAT              = 509 // { int faccessat(int fd, char *path, int amode, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux.go

    }
    
    func Chmod(path string, mode uint32) (err error) {
    	return Fchmodat(_AT_FDCWD, path, mode, 0)
    }
    
    func Chown(path string, uid int, gid int) (err error) {
    	return Fchownat(_AT_FDCWD, path, uid, gid, 0)
    }
    
    func Creat(path string, mode uint32) (fd int, err error) {
    	return Open(path, O_CREAT|O_WRONLY|O_TRUNC, mode)
    }
    
    func EpollCreate(size int) (fd int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, int flag); }
    	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); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_netbsd_arm.go

    	SYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, int flag); }
    	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); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  5. src/syscall/syscall_aix.go

    //sys	Fchdir(fd int) (err error)
    //sys	Fchmod(fd int, mode uint32) (err error)
    //sys	Fchmodat(dirfd int, path string, mode uint32, flags int) (err error)
    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error)
    //sys	Fpathconf(fd int, name int) (val int, err error)
    //sys	Fstat(fd int, stat *Stat_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_aix_ppc64.go

    //go:cgo_import_dynamic libc_Fchmod fchmod "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Fchmodat fchmodat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Fchown fchown "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Fchownat fchownat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Fpathconf fpathconf "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Fstat fstat "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, int flag); }
    	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); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, int flag); }
    	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); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, int flag); }
    	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); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_netbsd_386.go

    	SYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, int flag); }
    	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); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
Back to top