internal/profile.Profile.TimeNanos (field)

13 uses

	internal/profile (current package)
		encode.go#L127: 	encodeInt64Opt(b, 9, p.TimeNanos)
		encode.go#L188: 	func(b *buffer, m message) error { return decodeInt64(b, &m.(*Profile).TimeNanos) },
		merge.go#L401: 		if timeNanos == 0 || s.TimeNanos < timeNanos {
		merge.go#L402: 			timeNanos = s.TimeNanos
		merge.go#L425: 		TimeNanos:     timeNanos,
		profile.go#L33: 	TimeNanos     int64
		profile.go#L344: 	if p.TimeNanos != 0 {
		profile.go#L345: 		ss = append(ss, fmt.Sprintf("Time: %v", time.Unix(0, p.TimeNanos)))

	net/http/pprof
		pprof.go#L302: 	ts := p1.TimeNanos
		pprof.go#L303: 	dur := p1.TimeNanos - p0.TimeNanos
		pprof.go#L313: 	p1.TimeNanos = ts // set since we don't know what profile.Merge set for TimeNanos.
		pprof.go#L331: 	p0.TimeNanos = ts