sync/atomic.Bool.Store (method)

43 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#L1296: 	c.isHandshakeComplete.Store(false)
		handshake_client.go#L618: 	c.isHandshakeComplete.Store(true)
		handshake_client_tls13.go#L157: 	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#L208: 	es.inhibitChildUpdates.Store(true)
		endpointsharding.go#L210: 		es.inhibitChildUpdates.Store(false)

	google.golang.org/grpc/internal/transport
		http2_client.go#L801: 		s.unprocessed.Store(true)
		http2_client.go#L1279: 		s.unprocessed.Store(true)
		http2_client.go#L1425: 			stream.unprocessed.Store(true)
		http2_client.go#L1477: 	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#L412: 			timedOut.Store(true)
		server.go#L576: 	w.canWriteContinue.Store(false)
		server.go#L949: 			w.canWriteContinue.Store(false)
		server.go#L955: 		ecr.sawEOF.Store(true)
		server.go#L961: 	ecr.closed.Store(true)
		server.go#L1665: 	w.handlerDone.Store(true)
		server.go#L2050: 				w.canWriteContinue.Store(true)
		server.go#L3101: 	s.inShutdown.Store(true)
		server.go#L3151: 	s.inShutdown.Store(true)
		server.go#L3635: 		s.disableKeepAlives.Store(false)
		server.go#L3638: 	s.disableKeepAlives.Store(true)

	net/http/httputil
		reverseproxy.go#L978: 	ncr.closed.Store(true)

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

	testing
		benchmark.go#L811: 	b.hasSub.Store(true)
		benchmark.go#L844: 		sub.hasSub.Store(true)
		testing.go#L1631: 	c.cleanupStarted.Store(true)
		testing.go#L1632: 	defer c.cleanupStarted.Store(false)
		testing.go#L2058: 	t.hasSub.Store(true)

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