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#L612: handshakeComplete := c.isHandshakeComplete.Load()
conn.go#L1204: if !c.isHandshakeComplete.Load() {
conn.go#L1422: if c.isHandshakeComplete.Load() {
conn.go#L1440: if !c.isHandshakeComplete.Load() {
conn.go#L1499: if c.isHandshakeComplete.Load() {
conn.go#L1545: if c.isHandshakeComplete.Load() {
conn.go#L1561: if c.handshakeErr == nil && !c.isHandshakeComplete.Load() {
conn.go#L1564: if c.handshakeErr != nil && c.isHandshakeComplete.Load() {
conn.go#L1604: state.HandshakeComplete = c.isHandshakeComplete.Load()
conn.go#L1648: if !c.isHandshakeComplete.Load() {
quic.go#L265: if !c.isHandshakeComplete.Load() {
hash/crc32
crc32.go#L211: case haveCastagnoli.Load() && tab == castagnoliTable:
internal/poll
fd_unix.go#L652: 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#L418: return stopTimer, timedOut.Load
server.go#L911: if ecr.closed.Load() {
server.go#L915: if !w.wroteContinue && w.canWriteContinue.Load() && !w.conn.hijacked() {
server.go#L918: if w.canWriteContinue.Load() {
server.go#L1163: if code == 100 && w.canWriteContinue.Load() {
server.go#L1323: if w.handlerDone.Load() && !trailers && !hasTE && bodyAllowedForStatus(w.status) && !header.has("Content-Length") && (!isHEAD || len(p) > 0) {
server.go#L1365: if ecr, ok := w.req.Body.(*expectContinueReader); ok && !ecr.sawEOF.Load() {
server.go#L1623: if w.canWriteContinue.Load() {
server.go#L2073: if w.handlerDone.Load() {
server.go#L2095: if w.handlerDone.Load() {
server.go#L3186: return !s.disableKeepAlives.Load() && !s.shuttingDown()
server.go#L3190: return s.inShutdown.Load()
os
exec.go#L39: return p.isdone.Load()
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |