sync/atomic.Bool.Load (method)

48 uses

	sync/atomic (current package)
		type.go#L19: func (x *Bool) Load() bool { return LoadUint32(&x.v) != 0 }

	sync
		once.go#L67: 	if !o.done.Load() {
		once.go#L76: 	if !o.done.Load() {

	crypto/tls
		conn.go#L614: 	handshakeComplete := c.isHandshakeComplete.Load()
		conn.go#L1227: 	if !c.isHandshakeComplete.Load() {
		conn.go#L1445: 	if c.isHandshakeComplete.Load() {
		conn.go#L1463: 	if !c.isHandshakeComplete.Load() {
		conn.go#L1522: 	if c.isHandshakeComplete.Load() {
		conn.go#L1568: 	if c.isHandshakeComplete.Load() {
		conn.go#L1584: 	if c.handshakeErr == nil && !c.isHandshakeComplete.Load() {
		conn.go#L1587: 	if c.handshakeErr != nil && c.isHandshakeComplete.Load() {
		conn.go#L1629: 	state.HandshakeComplete = c.isHandshakeComplete.Load()
		conn.go#L1685: 	if !c.isHandshakeComplete.Load() {
		quic.go#L305: 	if !c.isHandshakeComplete.Load() {

	crypto/tls/internal/fips140tls
		fipstls.go#L32: 	return required.Load()

	golang.org/x/net/http2
		gotrack.go#L36: 	if !DebugGoroutines || disableDebugGoroutines.Load() {
		gotrack.go#L43: 	if !DebugGoroutines || disableDebugGoroutines.Load() {
		gotrack.go#L52: 	if !DebugGoroutines || disableDebugGoroutines.Load() {

	google.golang.org/grpc/balancer/endpointsharding
		endpointsharding.go#L247: 	if es.inhibitChildUpdates.Load() {

	google.golang.org/grpc/internal/grpcsync
		event.go#L52: 	return e.fired.Load()

	google.golang.org/grpc/internal/transport
		client_stream.go#L82: 	return s.bytesReceived.Load()
		client_stream.go#L88: 	return s.unprocessed.Load()
		server_stream.go#L81: 	return s.headerSent.Load()

	hash/crc32
		crc32.go#L204: 	case haveCastagnoli.Load() && tab == castagnoliTable:

	internal/poll
		fd_unix.go#L654: 	if syscall.F_DUPFD_CLOEXEC != 0 && !dupCloexecUnsupported.Load() {

	internal/sync
		hashtriemap.go#L129: 		if (n == nil || n.isEntry) && !i.dead.Load() {
		hashtriemap.go#L237: 		if (n == nil || n.isEntry) && !i.dead.Load() {
		hashtriemap.go#L463: 		if !i.dead.Load() && (n == nil || n.isEntry) {

	internal/syscall/unix
		getrandom.go#L33: 	if getrandomUnsupported.Load() {

	log
		log.go#L202: 	if l.isDiscard.Load() {

	net/http
		client.go#L414: 	return stopTimer, timedOut.Load
		server.go#L976: 	if ecr.closed.Load() {
		server.go#L980: 	if w.canWriteContinue.Load() {
		server.go#L982: 		if w.canWriteContinue.Load() {
		server.go#L1363: 	if w.handlerDone.Load() && !trailers && !hasTE && bodyAllowedForStatus(w.status) && !header.has("Content-Length") && (!isHEAD || len(p) > 0) {
		server.go#L1410: 	if ecr, ok := w.req.Body.(*expectContinueReader); ok && !ecr.sawEOF.Load() {
		server.go#L1674: 	if w.canWriteContinue.Load() {
		server.go#L2238: 	if w.handlerDone.Load() {
		server.go#L2263: 	if w.handlerDone.Load() {
		server.go#L3651: 	return !s.disableKeepAlives.Load() && !s.shuttingDown()
		server.go#L3655: 	return s.inShutdown.Load()

	runtime/trace
		annotation.go#L181: 	return tracing.enabled.Load()
		subscribe.go#L108: 	if t.enabled.Load() {

	testing
		benchmark.go#L257: 	if b.hasSub.Load() || finished {
		testing.go#L1922: 		if t.parent != nil && !t.hasSub.Load() {
		testing.go#L1952: 	if t.cleanupStarted.Load() {
		testing.go#L2022: 	if t.cleanupStarted.Load() {

	unique
		canonmap.go#L99: 		if (n == nil || n.isEntry) && !i.dead.Load() {