func sync/atomic.StoreUint32

34 uses

	sync/atomic (current package)
		doc.go#L135: func StoreUint32(addr *uint32, val uint32)

	sync
		once.go#L67: 		defer atomic.StoreUint32(&o.done, 1)

	crypto/tls
		conn.go#L1192: 	atomic.StoreUint32(&c.handshakeStatus, 0)
		handshake_client.go#L443: 	atomic.StoreUint32(&c.handshakeStatus, 1)
		handshake_client_tls13.go#L101: 	atomic.StoreUint32(&c.handshakeStatus, 1)
		handshake_server.go#L121: 	atomic.StoreUint32(&c.handshakeStatus, 1)
		handshake_server_tls13.go#L78: 	atomic.StoreUint32(&c.handshakeStatus, 1)

	github.com/aws/aws-sdk-go/aws/ec2metadata
		token_provider.go#L58: 				atomic.StoreUint32(&t.disabled, 1)
		token_provider.go#L66: 					atomic.StoreUint32(&t.disabled, 1)
		token_provider.go#L90: 		atomic.StoreUint32(&t.disabled, 0)

	github.com/go-git/go-git/v5/storage/filesystem/dotgit
		writers.go#L216: 		atomic.StoreUint32(&s.blocked, 0)
		writers.go#L225: 		atomic.StoreUint32(&s.blocked, 1)
		writers.go#L243: 	atomic.StoreUint32(&s.done, 1)

	github.com/go-redis/redis/v8
		cluster.go#L208: 	atomic.StoreUint32(&n.latency, uint32(latency+0.5))
		cluster.go#L217: 	atomic.StoreUint32(&n.failing, uint32(time.Now().Unix()))
		cluster.go#L230: 	atomic.StoreUint32(&n.failing, 0)
		cluster.go#L636: 		defer atomic.StoreUint32(&c.reloading, 0)

	github.com/go-redis/redis/v8/internal
		once.go#L56: 			atomic.StoreUint32(&o.done, 1)

	github.com/go-redis/redis/v8/internal/pool
		pool.go#L207: 		atomic.StoreUint32(&p.dialErrorsNum, 0)

	go.opencensus.io/stats/view
		view.go#L135: 	atomic.StoreUint32(&v.subscribed, 1)
		view.go#L139: 	atomic.StoreUint32(&v.subscribed, 0)

	google.golang.org/grpc/internal/transport
		flowcontrol.go#L113: 	atomic.StoreUint32(&f.effectiveWindowSize, f.limit-f.unacked)
		http2_client.go#L597: 		atomic.StoreUint32(&s.unprocessed, 1)
		http2_client.go#L1015: 		atomic.StoreUint32(&s.unprocessed, 1)
		http2_client.go#L1150: 			atomic.StoreUint32(&stream.unprocessed, 1)
		http2_client.go#L1196: 	atomic.StoreUint32(&s.bytesReceived, 1)
		http2_server.go#L804: 	atomic.StoreUint32(&t.resetPingStrikes, 1)

	google.golang.org/protobuf/internal/filedesc
		desc.go#L98: 	atomic.StoreUint32(&fd.once, 1)

	google.golang.org/protobuf/internal/impl
		codec_extension.go#L152: 	atomic.StoreUint32(&f.lazy.atomicOnce, 1)
		extension.go#L131: 	defer atomic.StoreUint32(&xi.init, extensionInfoFullInit)
		message.go#L93: 	atomic.StoreUint32(&mi.initDone, 1)

	hash/crc32
		crc32.go#L99: 	atomic.StoreUint32(&haveCastagnoli, 1)

	internal/poll
		fd_unix.go#L130: 	atomic.StoreUint32(&fd.isBlocking, 1)

	os
		exec.go#L35: 	atomic.StoreUint32(&p.isdone, 1)