sync/atomic.Bool.Load (method)

29 uses

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

	crypto/tls
		conn.go#L616: 	handshakeComplete := c.isHandshakeComplete.Load()
		conn.go#L1220: 	if !c.isHandshakeComplete.Load() {
		conn.go#L1438: 	if c.isHandshakeComplete.Load() {
		conn.go#L1456: 	if !c.isHandshakeComplete.Load() {
		conn.go#L1515: 	if c.isHandshakeComplete.Load() {
		conn.go#L1561: 	if c.isHandshakeComplete.Load() {
		conn.go#L1577: 	if c.handshakeErr == nil && !c.isHandshakeComplete.Load() {
		conn.go#L1580: 	if c.handshakeErr != nil && c.isHandshakeComplete.Load() {
		conn.go#L1622: 	state.HandshakeComplete = c.isHandshakeComplete.Load()
		conn.go#L1678: 	if !c.isHandshakeComplete.Load() {
		quic.go#L305: 	if !c.isHandshakeComplete.Load() {

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

	internal/concurrent
		hashtriemap.go#L111: 		if (n == nil || n.isEntry) && !i.dead.Load() {
		hashtriemap.go#L223: 		if !i.dead.Load() {

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

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

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

	net/http
		client.go#L417: 	return stopTimer, timedOut.Load
		server.go#L961: 	if ecr.closed.Load() {
		server.go#L965: 	if w.canWriteContinue.Load() {
		server.go#L967: 		if w.canWriteContinue.Load() {
		server.go#L1371: 	if w.handlerDone.Load() && !trailers && !hasTE && bodyAllowedForStatus(w.status) && !header.has("Content-Length") && (!isHEAD || len(p) > 0) {
		server.go#L1418: 	if ecr, ok := w.req.Body.(*expectContinueReader); ok && !ecr.sawEOF.Load() {
		server.go#L1682: 	if w.canWriteContinue.Load() {
		server.go#L2156: 	if w.handlerDone.Load() {
		server.go#L2179: 	if w.handlerDone.Load() {
		server.go#L3461: 	return !s.disableKeepAlives.Load() && !s.shuttingDown()
		server.go#L3465: 	return s.inShutdown.Load()