Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for Statfs_t (0.16 sec)

  1. api/go1.12.txt

    pkg syscall (freebsd-386), type Stat_t struct, Rdev uint64
    pkg syscall (freebsd-386), type Stat_t struct, Spare [10]uint64
    pkg syscall (freebsd-386), type Statfs_t struct, Mntfromname [1024]int8
    pkg syscall (freebsd-386), type Statfs_t struct, Mntonname [1024]int8
    pkg syscall (freebsd-386-cgo), const S_IRWXG = 56
    pkg syscall (freebsd-386-cgo), const S_IRWXG ideal-int
    pkg syscall (freebsd-386-cgo), const S_IRWXO = 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 21:21:53 UTC 2019
    - 13.5K bytes
    - Viewed (0)
  2. api/except.txt

    pkg syscall (openbsd-amd64), type Stat_t struct, Lspare1 int32
    pkg syscall (openbsd-amd64), type Stat_t struct, Qspare [2]int64
    pkg syscall (openbsd-amd64), type Statfs_t struct, F_ctime uint32
    pkg syscall (openbsd-amd64), type Statfs_t struct, F_spare [3]uint32
    pkg syscall (openbsd-amd64), type Statfs_t struct, Pad_cgo_1 [4]uint8
    pkg syscall (openbsd-amd64), type Timespec struct, Pad_cgo_0 [4]uint8
    pkg syscall (openbsd-amd64), type Timespec struct, Sec int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	return -1, ENOSYS
    }
    
    func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
    	var bufptr *Statfs_t
    	var bufsize uintptr
    	if len(buf) > 0 {
    		bufptr = &buf[0]
    		bufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))
    	}
    	return getfsstat(bufptr, bufsize, flags)
    }
    
    //sysnb	getresuid(ruid *_C_int, euid *_C_int, suid *_C_int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    		nfd = 0
    	}
    	return
    }
    
    //sys	Getcwd(buf []byte) (n int, err error) = SYS___GETCWD
    
    func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
    	var _p0 unsafe.Pointer
    	var bufsize uintptr
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    		bufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))
    	}
    	r0, _, e1 := Syscall(SYS_GETFSSTAT, uintptr(_p0), bufsize, uintptr(flags))
    	n = int(r0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    		nfd = 0
    	}
    	return
    }
    
    //sys	Getcwd(buf []byte) (n int, err error) = SYS___GETCWD
    
    func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
    	var (
    		_p0     unsafe.Pointer
    		bufsize uintptr
    	)
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    		bufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))
    	}
    	r0, _, e1 := Syscall(SYS_GETFSSTAT, uintptr(_p0), bufsize, uintptr(flags))
    	n = int(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux_386.go

    	if e != 0 {
    		err = e
    	}
    	return
    }
    
    func Fstatfs(fd int, buf *Statfs_t) (err error) {
    	_, _, e := Syscall(SYS_FSTATFS64, uintptr(fd), unsafe.Sizeof(*buf), uintptr(unsafe.Pointer(buf)))
    	if e != 0 {
    		err = e
    	}
    	return
    }
    
    func Statfs(path string, buf *Statfs_t) (err error) {
    	pathp, err := BytePtrFromString(path)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/syscall/syscall_darwin.go

    	err = pipe(&q)
    	if err == nil {
    		p[0] = int(q[0])
    		p[1] = int(q[1])
    	}
    	return
    }
    
    func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
    	var _p0 unsafe.Pointer
    	var bufsize uintptr
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    		bufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))
    	}
    	r0, _, e1 := syscall(abi.FuncPCABI0(libc_getfsstat_trampoline), uintptr(_p0), bufsize, uintptr(flags))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Fstatfs(fd int, buf *Statfs_t) (err error) {
    	_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Fstatfs(fd int, buf *Statfs_t) (err error) {
    	_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Fstatfs(fd int, buf *Statfs_t) (err error) {
    	_, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top