time.Time.UnixNano (method)

7 uses

	time (current package)
		time.go#L1137: func (t Time) UnixNano() int64 {

	crypto/rand
		rand_unix.go#L152: 		ns := time.Now().UnixNano()

	io/ioutil
		tempfile.go#L25: 	return uint32(time.Now().UnixNano() + int64(os.Getpid()))

	os
		file_posix.go#L182: 	utimes[0] = syscall.NsecToTimespec(atime.UnixNano())
		file_posix.go#L183: 	utimes[1] = syscall.NsecToTimespec(mtime.UnixNano())

	runtime/pprof
		proto.go#L340: 	b.pb.int64Opt(tagProfile_TimeNanos, b.start.UnixNano())

	src.elv.sh/pkg/eval
		builtin_fn_misc.go#L44: 	rand.Seed(time.Now().UTC().UnixNano())