func sync/atomic.LoadInt32

9 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)

	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 {