sync/atomic.Bool.Load (method)
43 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() {
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#L199: case haveCastagnoli.Load() && tab == castagnoliTable:
internal/poll
fd_unix.go#L661: 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#L203: if l.isDiscard.Load() {
net/http
client.go#L414: 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#L2230: if w.handlerDone.Load() {
server.go#L2253: if w.handlerDone.Load() {
server.go#L3612: return !s.disableKeepAlives.Load() && !s.shuttingDown()
server.go#L3616: return s.inShutdown.Load()
runtime/trace
annotation.go#L181: return tracing.enabled.Load()
testing
benchmark.go#L257: if b.hasSub.Load() || finished {
testing.go#L1780: if t.parent != nil && !t.hasSub.Load() {
testing.go#L1807: if t.cleanupStarted.Load() {
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)