Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for utimensat (0.19 sec)

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

    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: usec}
    }
    
    func futimesat(dirfd int, path string, tv *[2]Timeval) (err error) {
    	if tv == nil {
    		return utimensat(dirfd, path, nil, 0)
    	}
    
    	ts := []Timespec{
    		NsecToTimespec(TimevalToNsec(tv[0])),
    		NsecToTimespec(TimevalToNsec(tv[1])),
    	}
    	return utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go

    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: usec}
    }
    
    func futimesat(dirfd int, path string, tv *[2]Timeval) (err error) {
    	if tv == nil {
    		return utimensat(dirfd, path, nil, 0)
    	}
    
    	ts := []Timespec{
    		NsecToTimespec(TimevalToNsec(tv[0])),
    		NsecToTimespec(TimevalToNsec(tv[1])),
    	}
    	return utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux_arm64.go

    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: usec}
    }
    
    func futimesat(dirfd int, path string, tv *[2]Timeval) (err error) {
    	if tv == nil {
    		return utimensat(dirfd, path, nil, 0)
    	}
    
    	ts := []Timespec{
    		NsecToTimespec(TimevalToNsec(tv[0])),
    		NsecToTimespec(TimevalToNsec(tv[1])),
    	}
    	return utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux_riscv64.go

    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: usec}
    }
    
    func futimesat(dirfd int, path string, tv *[2]Timeval) (err error) {
    	if tv == nil {
    		return utimensat(dirfd, path, nil, 0)
    	}
    
    	ts := []Timespec{
    		NsecToTimespec(TimevalToNsec(tv[0])),
    		NsecToTimespec(TimevalToNsec(tv[1])),
    	}
    	return utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. src/syscall/syscall_linux_loong64.go

    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: usec}
    }
    
    func futimesat(dirfd int, path string, tv *[2]Timeval) (err error) {
    	if tv == nil {
    		return utimensat(dirfd, path, nil, 0)
    	}
    
    	ts := []Timespec{
    		NsecToTimespec(TimevalToNsec(tv[0])),
    		NsecToTimespec(TimevalToNsec(tv[1])),
    	}
    	return utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go

    	err = Prlimit(0, resource, nil, rlim)
    	return
    }
    
    func futimesat(dirfd int, path string, tv *[2]Timeval) (err error) {
    	if tv == nil {
    		return utimensat(dirfd, path, nil, 0)
    	}
    
    	ts := []Timespec{
    		NsecToTimespec(TimevalToNsec(tv[0])),
    		NsecToTimespec(TimevalToNsec(tv[1])),
    	}
    	return utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    }
    
    func UtimesNano(path string, ts []Timespec) error {
    	if ts == nil {
    		err := utimensat(AT_FDCWD, path, nil, 0)
    		if err != ENOSYS {
    			return err
    		}
    		return utimes(path, nil)
    	}
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	err := utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    	if err != ENOSYS {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. src/syscall/syscall_darwin.go

    //go:cgo_import_dynamic libc_getfsstat getfsstat "/usr/lib/libSystem.B.dylib"
    
    // utimensat should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/tetratelabs/wazero
    //
    // See go.dev/issue/67401.
    //
    //go:linkname utimensat
    
    //sys	utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error)
    
    /*
     * Wrapped
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    //sys	utimensat(dirfd int, path string, times *[2]Timespec, flag int) (err error)
    
    func UtimesNano(path string, ts []Timespec) error {
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	return utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    		return e1
    	}
    	return nil
    }
    
    //sys	futimesat(fildes int, path *byte, times *[2]Timeval) (err error)
    
    func Futimesat(dirfd int, path string, tv []Timeval) error {
    	pathp, err := BytePtrFromString(path)
    	if err != nil {
    		return err
    	}
    	if tv == nil {
    		return futimesat(dirfd, pathp, nil)
    	}
    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return futimesat(dirfd, pathp, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
Back to top