Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 118 for pathconf (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.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
    - 36.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    //sys	Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error)
    //sys	Open(path string, mode int, perm uint32) (fd int, err error)
    //sys	Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error)
    //sys	Pathconf(path string, name int) (val int, err error)
    //sys	pread(fd int, p []byte, offset int64) (n int, err error)
    //sys	pwrite(fd int, p []byte, offset int64) (n int, err error)
    //sys	read(fd int, p []byte) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  9. 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)
  10. src/syscall/zsysnum_freebsd_riscv64.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 Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
Back to top