Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for fpathconf (0.13 sec)

  1. src/syscall/zsysnum_freebsd_arm.go

    	SYS_SETEGID                  = 182 // { int setegid(gid_t egid); }
    	SYS_SETEUID                  = 183 // { int seteuid(uid_t euid); }
    	SYS_PATHCONF                 = 191 // { int pathconf(char *path, int name); }
    	SYS_FPATHCONF                = 192 // { int fpathconf(int fd, int name); }
    	SYS_GETRLIMIT                = 194 // { int getrlimit(u_int which, \
    	SYS_SETRLIMIT                = 195 // { int setrlimit(u_int which, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_SETEGID       = 182 // { int setegid(gid_t egid); }
    	SYS_SETEUID       = 183 // { int seteuid(uid_t euid); }
    	SYS_PATHCONF      = 191 // { int pathconf(char *path, int name); }
    	SYS_FPATHCONF     = 192 // { int fpathconf(int fd, int name); }
    	SYS_GETRLIMIT     = 194 // { int getrlimit(u_int which, \
    	SYS_SETRLIMIT     = 195 // { int setrlimit(u_int which, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_Fchdir fchdir "libc.so"
    //go:cgo_import_dynamic libc_Fchmod fchmod "libc.so"
    //go:cgo_import_dynamic libc_Fchown fchown "libc.so"
    //go:cgo_import_dynamic libc_Fpathconf fpathconf "libc.so"
    //go:cgo_import_dynamic libc_Fstat fstat "libc.so"
    //go:cgo_import_dynamic libc_Getdents getdents "libc.so"
    //go:cgo_import_dynamic libc_Getgid getgid "libc.so"
    //go:cgo_import_dynamic libc_Getpid getpid "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:09:10 UTC 2023
    - 37.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //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	Flock(fd int, how int) (err error)
    //sys	Fpathconf(fd int, name int) (val int, err error)
    //sys	Fstat(fd int, stat *Stat_t) (err error)
    //sys	Fstatat(fd int, path string, stat *Stat_t, flags int) (err error)
    //sys	Fstatfs(fd int, stat *Statfs_t) (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)
  5. src/syscall/syscall_solaris.go

    //sys	Close(fd int) (err error)
    //sys	Dup(fd int) (nfd int, err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchmod(fd int, mode uint32) (err error)
    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Fpathconf(fd int, name int) (val int, err error)
    //sys	Fstat(fd int, stat *Stat_t) (err error)
    //sys	Getdents(fd int, buf []byte, basep *uintptr) (n int, err error)
    //sysnb	Getgid() (gid int)
    //sysnb	Getpid() (pid int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_SETEGID              = 182 // { int|sys||setegid(gid_t egid); }
    	SYS_SETEUID              = 183 // { int|sys||seteuid(uid_t euid); }
    	SYS_PATHCONF             = 191 // { long|sys||pathconf(const char *path, int name); }
    	SYS_FPATHCONF            = 192 // { long|sys||fpathconf(int fd, int name); }
    	SYS_GETRLIMIT            = 194 // { int|sys||getrlimit(int which, struct rlimit *rlp); }
    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/zsysnum_netbsd_arm.go

    	SYS_SETEGID              = 182 // { int|sys||setegid(gid_t egid); }
    	SYS_SETEUID              = 183 // { int|sys||seteuid(uid_t euid); }
    	SYS_PATHCONF             = 191 // { long|sys||pathconf(const char *path, int name); }
    	SYS_FPATHCONF            = 192 // { long|sys||fpathconf(int fd, int name); }
    	SYS_GETRLIMIT            = 194 // { int|sys||getrlimit(int which, struct rlimit *rlp); }
    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/zsyscall_openbsd_arm.go

    func Fpathconf(fd int, name int) (val int, err error) {
    	r0, _, e1 := syscall(abi.FuncPCABI0(libc_fpathconf_trampoline), uintptr(fd), uintptr(name), 0)
    	val = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_fpathconf_trampoline()
    
    //go:cgo_import_dynamic libc_fpathconf fpathconf "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_SETEGID                = 182 // { int setegid(gid_t egid); }
    	SYS_SETEUID                = 183 // { int seteuid(uid_t euid); }
    	SYS_PATHCONF               = 191 // { int pathconf(char *path, int name); }
    	SYS_FPATHCONF              = 192 // { int fpathconf(int fd, int name); }
    	SYS_GETRLIMIT              = 194 // { int getrlimit(u_int which, struct rlimit *rlp); } getrlimit __getrlimit_args int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_SETEGID              = 182 // { int|sys||setegid(gid_t egid); }
    	SYS_SETEUID              = 183 // { int|sys||seteuid(uid_t euid); }
    	SYS_PATHCONF             = 191 // { long|sys||pathconf(const char *path, int name); }
    	SYS_FPATHCONF            = 192 // { long|sys||fpathconf(int fd, int name); }
    	SYS_GETRLIMIT            = 194 // { int|sys||getrlimit(int which, struct rlimit *rlp); }
    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