func sync/atomic.StoreUint32

25 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#L1200: 	atomic.StoreUint32(&c.handshakeStatus, 0)
		handshake_client.go#L453: 	atomic.StoreUint32(&c.handshakeStatus, 1)
		handshake_client_tls13.go#L103: 	atomic.StoreUint32(&c.handshakeStatus, 1)
		handshake_server.go#L125: 	atomic.StoreUint32(&c.handshakeStatus, 1)
		handshake_server_tls13.go#L80: 	atomic.StoreUint32(&c.handshakeStatus, 1)

	github.com/go-pg/pg/v10/internal/pool
		conn.go#L42: 	atomic.StoreUint32(&cn.usedAt, uint32(tm.Unix()))
		pool.go#L203: 		atomic.StoreUint32(&p.dialErrorsNum, 0)

	github.com/vmihailenco/bufpool
		pool.go#L116: 	atomic.StoreUint32(&p.serveSize, uint32(serveSize))
		pool.go#L117: 	atomic.StoreUint32(&p.calibrating, 0)

	go.uber.org/atomic
		uint32.go#L82: 	atomic.StoreUint32(&i.v, val)

	google.golang.org/grpc/internal/transport
		flowcontrol.go#L113: 	atomic.StoreUint32(&f.effectiveWindowSize, f.limit-f.unacked)
		http2_client.go#L732: 		atomic.StoreUint32(&s.unprocessed, 1)
		http2_client.go#L1180: 		atomic.StoreUint32(&s.unprocessed, 1)
		http2_client.go#L1327: 				atomic.StoreUint32(&stream.unprocessed, 1)
		http2_client.go#L1379: 	atomic.StoreUint32(&s.bytesReceived, 1)
		http2_server.go#L983: 	atomic.StoreUint32(&t.resetPingStrikes, 1)

	google.golang.org/protobuf/internal/filedesc
		desc.go#L99: 	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#L131: 	atomic.StoreUint32(&fd.isBlocking, 1)

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