Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for Faccessat (0.39 sec)

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

    int fcntl(uintptr_t, int, uintptr_t);
    int fsync_range(int, int, long long, long long);
    int acct(uintptr_t);
    int chdir(uintptr_t);
    int chroot(uintptr_t);
    int close(int);
    int dup(int);
    void exit(int);
    int faccessat(int, uintptr_t, unsigned int, int);
    int fchdir(int);
    int fchmod(int, unsigned int);
    int fchmodat(int, uintptr_t, unsigned int, int);
    int fchownat(int, uintptr_t, int, int, int);
    int fdatasync(int);
    int getpgid(int);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //sys	ExtattrListLink(link string, attrnamespace int, data uintptr, nbytes int) (ret int, err error)
    //sys	Fadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_POSIX_FADVISE
    //sys	Faccessat(dirfd int, path string, mode uint32, flags int) (err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchflags(fd int, flags int) (err error)
    //sys	Fchmod(fd int, mode uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_freebsd_arm.go

    	SYS_CPUSET_GETAFFINITY       = 487 // { int cpuset_getaffinity(cpulevel_t level, \
    	SYS_CPUSET_SETAFFINITY       = 488 // { int cpuset_setaffinity(cpulevel_t level, \
    	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, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_dragonfly_amd64.go

    	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, \
    	SYS_MQ_OPEN                = 510 // { mqd_t mq_open(const char * name, int oflag, \
    	SYS_MQ_CLOSE               = 511 // { int mq_close(mqd_t mqdes); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_MKDIRAT              = 461 // { int|sys||mkdirat(int fd, const char *path, mode_t mode); }
    	SYS_FACCESSAT            = 462 // { int|sys||faccessat(int fd, const char *path, int amode, int flag); }
    	SYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, 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)
  6. src/syscall/zsysnum_netbsd_arm.go

    	SYS_MKDIRAT              = 461 // { int|sys||mkdirat(int fd, const char *path, mode_t mode); }
    	SYS_FACCESSAT            = 462 // { int|sys||faccessat(int fd, const char *path, int amode, int flag); }
    	SYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, 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)
  7. src/syscall/zsyscall_aix_ppc64.go

    //go:cgo_import_dynamic libc_Chroot chroot "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Close close "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Dup dup "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Faccessat faccessat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Fchdir fchdir "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Fchmod fchmod "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Fchmodat fchmodat "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)
  8. src/runtime/sys_linux_amd64.s

    	MOVQ	buf+16(FP), DX
    	MOVL	$SYS_sched_getaffinity, AX
    	SYSCALL
    	MOVL	AX, ret+24(FP)
    	RET
    
    // int access(const char *name, int mode)
    TEXT runtime·access(SB),NOSPLIT,$0
    	// This uses faccessat instead of access, because Android O blocks access.
    	MOVL	$AT_FDCWD, DI // AT_FDCWD, so this acts like access
    	MOVQ	name+0(FP), SI
    	MOVL	mode+8(FP), DX
    	MOVL	$0, R10
    	MOVL	$SYS_faccessat, AX
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_MKDIRAT              = 461 // { int|sys||mkdirat(int fd, const char *path, mode_t mode); }
    	SYS_FACCESSAT            = 462 // { int|sys||faccessat(int fd, const char *path, int amode, int flag); }
    	SYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_MKDIRAT              = 461 // { int|sys||mkdirat(int fd, const char *path, mode_t mode); }
    	SYS_FACCESSAT            = 462 // { int|sys||faccessat(int fd, const char *path, int amode, int flag); }
    	SYS_FCHMODAT             = 463 // { int|sys||fchmodat(int fd, const char *path, mode_t mode, 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)
Back to top