func sync/atomic.StoreInt64

20 uses

	sync/atomic (current package)
		doc.go#L132: func StoreInt64(addr *int64, val int64)

	expvar
		expvar.go#L65: 	atomic.StoreInt64(&v.i, value)

	github.com/aws/aws-sdk-go/aws/csm
		metric_chan.go#L30: 	atomic.StoreInt64(ch.paused, pausedEnum)
		metric_chan.go#L34: 	atomic.StoreInt64(ch.paused, runningEnum)

	github.com/go-redis/redis/v8/internal/pool
		conn.go#L47: 	atomic.StoreInt64(&cn.usedAt, tm.Unix())

	go.opentelemetry.io/otel/api/metric
		number.go#L255: 	atomic.StoreInt64(n.AsInt64Ptr(), i)

	google.golang.org/grpc
		clientconn.go#L783: 	atomic.StoreInt64(&cc.czData.lastCallStartedTime, time.Now().UnixNano())
		clientconn.go#L1474: 	atomic.StoreInt64(&ac.czData.lastCallStartedTime, time.Now().UnixNano())
		server.go#L971: 	atomic.StoreInt64(&s.czData.lastCallStartedTime, time.Now().UnixNano())

	google.golang.org/grpc/internal/channelz
		funcs.go#L734: 	atomic.StoreInt64(&i.id, 0)

	google.golang.org/grpc/internal/transport
		http2_client.go#L623: 				atomic.StoreInt64(&t.czData.lastStreamCreatedTime, time.Now().UnixNano())
		http2_client.go#L1281: 		atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_client.go#L1296: 			atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_client.go#L1464: 	atomic.StoreInt64(&t.czData.lastMsgSentTime, time.Now().UnixNano())
		http2_client.go#L1469: 	atomic.StoreInt64(&t.czData.lastMsgRecvTime, time.Now().UnixNano())
		http2_server.go#L281: 	atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_server.go#L412: 		atomic.StoreInt64(&t.czData.lastStreamCreatedTime, time.Now().UnixNano())
		http2_server.go#L460: 		atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_server.go#L1237: 	atomic.StoreInt64(&t.czData.lastMsgSentTime, time.Now().UnixNano())
		http2_server.go#L1242: 	atomic.StoreInt64(&t.czData.lastMsgRecvTime, time.Now().UnixNano())