Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for UtimesNano (0.18 sec)

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

    			return name == "__utimensat_a"
    		}
    	}
    	return false
    }
    
    // Begin UtimesNano
    
    //go:nosplit
    func get_UtimesNanoAddr() *(func(path string, ts []Timespec) (err error))
    
    var UtimesNano = enter_UtimesNano
    
    func enter_UtimesNano(path string, ts []Timespec) (err error) {
    	funcref := get_UtimesNanoAddr()
    	if validUtimensat() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    	if tv[0].Nanoseconds() != 0 {
    		w = NsecToFiletime(tv[1].Nanoseconds())
    	}
    	return SetFileTime(h, nil, &a, &w)
    }
    
    // This matches the value in os/file_windows.go.
    const _UTIME_OMIT = -1
    
    func UtimesNano(path string, ts []Timespec) (err error) {
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	pathp, e := UTF16PtrFromString(path)
    	if e != nil {
    		return e
    	}
    	h, e := CreateFile(pathp,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	if err != ENOSYS {
    		return err
    	}
    	return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    //sys	utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error)
    
    func UtimesNano(path string, ts []Timespec) error {
    	return UtimesNanoAt(AT_FDCWD, path, ts, 0)
    }
    
    func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error {
    	if ts == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	if e != nil {
    		return e
    	}
    	defer CloseHandle(h)
    	a := NsecToFiletime(tv[0].Nanoseconds())
    	w := NsecToFiletime(tv[1].Nanoseconds())
    	return SetFileTime(h, nil, &a, &w)
    }
    
    func UtimesNano(path string, ts []Timespec) (err error) {
    	if len(ts) != 2 {
    		return syscall.EINVAL
    	}
    	pathp, e := UTF16PtrFromString(path)
    	if e != nil {
    		return e
    	}
    	h, e := CreateFile(pathp,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top