func sync/atomic.LoadInt32
21 uses
sync/atomic (current package)
doc.go#L111: func LoadInt32(addr *int32) (val int32)
crypto/tls
conn.go#L1101: x := atomic.LoadInt32(&c.activeCall)
conn.go#L1310: x = atomic.LoadInt32(&c.activeCall)
database/sql
sql.go#L1861: if atomic.LoadInt32(&c.done) != 0 {
sql.go#L2083: return atomic.LoadInt32(&tx.done) != 0
sql.go#L2152: if atomic.LoadInt32(&tx.done) == 1 {
github.com/evanw/esbuild/pkg/api
api_impl.go#L938: for atomic.LoadInt32(&w.shouldStop) == 0 {
github.com/go-redis/redis/v8
ring.go#L182: return atomic.LoadInt32(&shard.down) >= threshold
go.opencensus.io/stats
measure.go#L68: return atomic.LoadInt32(&m.subs) == 1
google.golang.org/grpc/internal/channelz
funcs.go#L74: i := atomic.LoadInt32(&maxTraceEntry)
types.go#L304: i := atomic.LoadInt32(&c.traceRefCount)
types.go#L412: i := atomic.LoadInt32(&sc.traceRefCount)
google.golang.org/grpc/internal/grpcsync
event.go#L55: return atomic.LoadInt32(&e.fired) == 1
google.golang.org/grpc/internal/transport
flowcontrol.go#L55: if atomic.LoadInt32(&w.quota) > 0 {
google.golang.org/protobuf/internal/impl
encode.go#L52: if size := atomic.LoadInt32(p.Apply(mi.sizecacheOffset).Int32()); size >= 0 {
internal/poll
fd_unix.go#L484: if syscall.F_DUPFD_CLOEXEC != 0 && atomic.LoadInt32(&tryDupCloexec) == 1 {
net/http
server.go#L526: func (b *atomicBool) isSet() bool { return atomic.LoadInt32((*int32)(b)) != 0 }
server.go#L3111: return atomic.LoadInt32(&s.disableKeepAlives) == 0 && !s.shuttingDown()
runtime/trace
annotation.go#L182: enabled := atomic.LoadInt32(&tracing.enabled)
testing
benchmark.go#L241: if atomic.LoadInt32(&b.hasSub) != 0 || b.finished {
testing.go#L1181: if t.parent != nil && atomic.LoadInt32(&t.hasSub) == 0 {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |