type sync/atomic.Bool
31 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
github.com/coder/websocket
conn.go#L80: closing atomic.Bool
github.com/gotd/td/telegram
cdn_pool_manager.go#L31: closed atomic.Bool
pool.go#L110: var suppressSetup atomic.Bool
github.com/gotd/td/telegram/internal/manager
conn.go#L73: cdnNeedsInit atomic.Bool
github.com/refraction-networking/utls
conn.go#L37: isHandshakeComplete atomic.Bool
go.opentelemetry.io/otel/trace
auto.go#L169: sampled atomic.Bool
go.uber.org/multierr
error.go#L209: copyNeeded atomic.Bool
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#L404: var timedOut atomic.Bool
h2_bundle.go#L3331: var http2disableDebugGoroutines atomic.Bool
server.go#L443: canWriteContinue atomic.Bool
server.go#L484: handlerDone atomic.Bool // set true when the handler exits
server.go#L935: closed atomic.Bool
server.go#L936: sawEOF atomic.Bool
server.go#L3077: inShutdown atomic.Bool // true when server is in shutdown
server.go#L3079: disableKeepAlives atomic.Bool
transport.go#L764: didClose atomic.Bool
unique
canonmap.go#L288: dead atomic.Bool
![]() |
The pages are generated with Golds v0.8.4. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |