sync/atomic.Bool.Store (method)

42 uses

	sync/atomic (current package)
		type.go#L22: func (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) }

	sync
		once.go#L77: 		defer o.done.Store(true)

	crypto/tls
		conn.go#L1297: 	c.isHandshakeComplete.Store(false)
		handshake_client.go#L637: 	c.isHandshakeComplete.Store(true)
		handshake_client_tls13.go#L158: 	c.isHandshakeComplete.Store(true)
		handshake_server.go#L128: 	c.isHandshakeComplete.Store(true)
		handshake_server_tls13.go#L102: 	c.isHandshakeComplete.Store(true)

	crypto/tls/internal/fips140tls
		fipstls.go#L24: 	required.Store(true)
		fipstls.go#L36: 	required.Store(false)

	google.golang.org/grpc/balancer/endpointsharding
		endpointsharding.go#L142: 	es.inhibitChildUpdates.Store(true)
		endpointsharding.go#L144: 		es.inhibitChildUpdates.Store(false)
		endpointsharding.go#L209: 	es.inhibitChildUpdates.Store(true)
		endpointsharding.go#L211: 		es.inhibitChildUpdates.Store(false)

	google.golang.org/grpc/internal/transport
		http2_client.go#L782: 		s.unprocessed.Store(true)
		http2_client.go#L1245: 		s.unprocessed.Store(true)
		http2_client.go#L1391: 			stream.unprocessed.Store(true)
		http2_client.go#L1442: 	s.bytesReceived.Store(true)

	hash/crc32
		crc32.go#L97: 	haveCastagnoli.Store(true)

	internal/poll
		fd_unix.go#L664: 			dupCloexecUnsupported.Store(true)

	internal/sync
		hashtriemap.go#L349: 		i.dead.Store(true)
		hashtriemap.go#L411: 		i.dead.Store(true)

	internal/syscall/unix
		getrandom.go#L42: 			getrandomUnsupported.Store(true)

	log
		log.go#L84: 	l.isDiscard.Store(w == io.Discard)

	net/http
		client.go#L407: 			timedOut.Store(true)
		server.go#L576: 	w.canWriteContinue.Store(false)
		server.go#L985: 			w.canWriteContinue.Store(false)
		server.go#L991: 		ecr.sawEOF.Store(true)
		server.go#L997: 	ecr.closed.Store(true)
		server.go#L1701: 	w.handlerDone.Store(true)
		server.go#L2086: 				w.canWriteContinue.Store(true)
		server.go#L3130: 	s.inShutdown.Store(true)
		server.go#L3180: 	s.inShutdown.Store(true)
		server.go#L3664: 		s.disableKeepAlives.Store(false)
		server.go#L3667: 	s.disableKeepAlives.Store(true)

	runtime/trace
		subscribe.go#L127: 		t.enabled.Store(false)
		subscribe.go#L200: 	t.enabled.Store(true)

	testing
		benchmark.go#L806: 	b.hasSub.Store(true)
		benchmark.go#L839: 		sub.hasSub.Store(true)
		testing.go#L1536: 	c.cleanupStarted.Store(true)
		testing.go#L1537: 	defer c.cleanupStarted.Store(false)
		testing.go#L1956: 	t.hasSub.Store(true)

	unique
		canonmap.go#L242: 				i.dead.Store(true) // Could be done outside of parent's lock.