type sync/atomic.Bool

33 uses

	sync/atomic (current package)
		type.go#L13: type Bool struct {
		type.go#L19: func (x *Bool) Load() bool { return LoadUint32(&x.v) != 0 }
		type.go#L22: func (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) }
		type.go#L25: func (x *Bool) Swap(new bool) (old bool) { return SwapUint32(&x.v, b32(new)) != 0 }
		type.go#L28: func (x *Bool) CompareAndSwap(old, new bool) (swapped bool) {

	sync
		once.go#L28: 	done atomic.Bool

	crypto/internal/sysrand
		rand.go#L17: var firstUse atomic.Bool

	crypto/tls
		conn.go#L38: 	isHandshakeComplete atomic.Bool

	crypto/tls/internal/fips140tls
		fipstls.go#L13: var required atomic.Bool

	go.uber.org/multierr
		error.go#L209: 	copyNeeded atomic.Bool

	golang.org/x/net/http2
		gotrack.go#L31: var disableDebugGoroutines atomic.Bool

	google.golang.org/grpc/balancer/endpointsharding
		endpointsharding.go#L108: 	inhibitChildUpdates atomic.Bool

	google.golang.org/grpc/internal/grpcsync
		event.go#L29: 	fired atomic.Bool

	google.golang.org/grpc/internal/transport
		client_stream.go#L47: 	bytesReceived atomic.Bool // indicates whether any bytes have been received on this stream
		client_stream.go#L48: 	unprocessed   atomic.Bool // set if the server sends a refused stream or GOAWAY including this stream
		server_stream.go#L51: 	headerSent atomic.Bool // atomically set when the headers are sent out.

	hash/crc32
		crc32.go#L81: var haveCastagnoli atomic.Bool

	internal/poll
		fd_unix.go#L650: var dupCloexecUnsupported atomic.Bool

	internal/sync
		hashtriemap.go#L543: 	dead     atomic.Bool

	internal/syscall/unix
		getrandom.go#L19: var getrandomUnsupported atomic.Bool

	log
		log.go#L63: 	isDiscard atomic.Bool

	net/http
		client.go#L399: 	var timedOut atomic.Bool
		server.go#L443: 	canWriteContinue atomic.Bool
		server.go#L484: 	handlerDone atomic.Bool // set true when the handler exits
		server.go#L971: 	closed     atomic.Bool
		server.go#L972: 	sawEOF     atomic.Bool
		server.go#L3106: 	inShutdown atomic.Bool // true when server is in shutdown
		server.go#L3108: 	disableKeepAlives atomic.Bool

	runtime/trace
		subscribe.go#L21: 	enabled     atomic.Bool

	testing
		testing.go#L651: 	hasSub         atomic.Bool    // whether there are sub-benchmarks.
		testing.go#L652: 	cleanupStarted atomic.Bool    // Registered cleanup callbacks have started to execute
		testing.go#L667: 	raceErrorLogged atomic.Bool

	unique
		canonmap.go#L288: 	dead     atomic.Bool