Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for fpathconf (0.22 sec)

  1. src/syscall/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 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  2. src/syscall/syscall_aix.go

    //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)
    //sys	Fstatfs(fd int, buf *Statfs_t) (err error)
    //sys	Ftruncate(fd int, length int64) (err error)
    //sysnb	Getgid() (gid int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    func Fpathconf(fd int, name int) (val int, err error) {
    	r0, _, e1 := syscall_syscall(libc_fpathconf_trampoline_addr, uintptr(fd), uintptr(name), 0)
    	val = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_fpathconf_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_fpathconf fpathconf "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    func Fpathconf(fd int, name int) (val int, err error) {
    	r0, _, e1 := syscall_syscall(libc_fpathconf_trampoline_addr, uintptr(fd), uintptr(name), 0)
    	val = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_fpathconf_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_fpathconf fpathconf "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_386.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)
  6. src/syscall/zsyscall_openbsd_riscv64.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.5K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_aix_ppc64.go

    //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"
    //go:cgo_import_dynamic libc_Fstatfs fstatfs "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Ftruncate ftruncate "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/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go

    func Fpathconf(fd int, name int) (val int, err error) {
    	r0, _, e1 := syscall_syscall(libc_fpathconf_trampoline_addr, uintptr(fd), uintptr(name), 0)
    	val = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_fpathconf_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_fpathconf fpathconf "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go

    func Fpathconf(fd int, name int) (val int, err error) {
    	r0, _, e1 := syscall_syscall(libc_fpathconf_trampoline_addr, uintptr(fd), uintptr(name), 0)
    	val = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_fpathconf_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_fpathconf fpathconf "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_darwin_arm64.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 "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
Back to top