type syscall.Timespec

17 uses

	syscall (current package)
		syscall.go#L80: func (ts *Timespec) Unix() (sec int64, nsec int64) {
		syscall.go#L90: func (ts *Timespec) Nano() int64 {
		syscall_linux.go#L339: func UtimesNano(path string, ts []Timespec) (err error) {
		syscall_linux.go#L343: 	return utimensat(_AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
		syscall_linux_amd64.go#L111: func setTimespec(sec, nsec int64) Timespec {
		syscall_linux_amd64.go#L112: 	return Timespec{Sec: sec, Nsec: nsec}
		timestruct.go#L10: func TimespecToNsec(ts Timespec) int64 { return ts.Nano() }
		timestruct.go#L13: func NsecToTimespec(nsec int64) Timespec {
		zsyscall_linux_amd64.go#L160: func utimensat(dirfd int, path string, times *[2]Timespec, flag int) (err error) {
		zsyscall_linux_amd64.go#L674: func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
		ztypes_linux_amd64.go#L24: type Timespec struct {
		ztypes_linux_amd64.go#L113: 	Atim      Timespec
		ztypes_linux_amd64.go#L114: 	Mtim      Timespec
		ztypes_linux_amd64.go#L115: 	Ctim      Timespec

	os
		file_posix.go#L180: 	var utimes [2]syscall.Timespec
		file_posix.go#L183: 			utimes[i] = syscall.Timespec{Sec: _UTIME_OMIT, Nsec: _UTIME_OMIT}