sync/atomic.Int64.Store (method)

29 uses

	sync/atomic (current package)
		type.go#L109: func (x *Int64) Store(val int64) { StoreInt64(&x.v, val) }

	expvar
		expvar.go#L75: 	v.i.Store(value)

	google.golang.org/grpc
		clientconn.go#L911: 	cc.channelz.ChannelMetrics.LastCallStartedTimestamp.Store(time.Now().UnixNano())
		clientconn.go#L1630: 	ac.channelz.ChannelMetrics.LastCallStartedTimestamp.Store(time.Now().UnixNano())
		server.go#L1160: 	s.channelz.ServerMetrics.LastCallStartedTimestamp.Store(time.Now().UnixNano())
		server.go#L2243: 	a.n.Store(int64(n))

	google.golang.org/grpc/internal/channelz
		channel.go#L112: 	c.CallsStarted.Store(o.CallsStarted.Load())
		channel.go#L113: 	c.CallsSucceeded.Store(o.CallsSucceeded.Load())
		channel.go#L114: 	c.CallsFailed.Store(o.CallsFailed.Load())
		channel.go#L115: 	c.LastCallStartedTimestamp.Store(o.LastCallStartedTimestamp.Load())
		channel.go#L164: 	c.CallsStarted.Store(started)
		channel.go#L165: 	c.CallsSucceeded.Store(succeeded)
		channel.go#L166: 	c.CallsFailed.Store(failed)
		channel.go#L167: 	c.LastCallStartedTimestamp.Store(timestamp)
		server.go#L55: 	sm.CallsStarted.Store(started)
		server.go#L56: 	sm.CallsSucceeded.Store(succeeded)
		server.go#L57: 	sm.CallsFailed.Store(failed)
		server.go#L58: 	sm.LastCallStartedTimestamp.Store(timestamp)
		server.go#L65: 	sm.CallsStarted.Store(o.CallsStarted.Load())
		server.go#L66: 	sm.CallsSucceeded.Store(o.CallsSucceeded.Load())
		server.go#L67: 	sm.CallsFailed.Store(o.CallsFailed.Load())
		server.go#L68: 	sm.LastCallStartedTimestamp.Store(o.LastCallStartedTimestamp.Load())

	google.golang.org/grpc/internal/transport
		http2_client.go#L804: 				t.channelz.SocketMetrics.LastLocalStreamCreatedTimestamp.Store(time.Now().UnixNano())
		http2_client.go#L1815: 		t.channelz.SocketMetrics.LastMessageSentTimestamp.Store(time.Now().UnixNano())
		http2_client.go#L1822: 		t.channelz.SocketMetrics.LastMessageReceivedTimestamp.Store(time.Now().UnixNano())
		http2_server.go#L641: 		t.channelz.SocketMetrics.LastRemoteStreamCreatedTimestamp.Store(time.Now().UnixNano())

	testing
		testing.go#L1456: 		c.lastRaceErrors.Store(int64(race.Errors()))
		testing.go#L1458: 		c.lastRaceErrors.Store(c.parent.checkRaces())
		testing.go#L1593: 	t.lastRaceErrors.Store(int64(race.Errors()))