func sync/atomic.AddInt64
41 uses
sync/atomic (current package)
doc.go#L100: func AddInt64(addr *int64, delta int64) (new int64)
database/sql
sql.go#L1257: atomic.AddInt64(&db.waitDuration, int64(time.Since(waitStart)))
sql.go#L1268: atomic.AddInt64(&db.waitDuration, int64(time.Since(waitStart)))
expvar
expvar.go#L61: atomic.AddInt64(&v.i, delta)
github.com/go-redis/redis/v8
cluster_commands.go#L16: atomic.AddInt64(&size, n)
go.opencensus.io/plugin/ocgrpc
stats_common.go#L107: atomic.AddInt64(&d.sentBytes, int64(s.Length))
stats_common.go#L108: atomic.AddInt64(&d.sentCount, 1)
stats_common.go#L120: atomic.AddInt64(&d.recvBytes, int64(s.Length))
stats_common.go#L121: atomic.AddInt64(&d.recvCount, 1)
go.opentelemetry.io/otel/api/metric
number.go#L383: atomic.AddInt64(n.AsInt64Ptr(), i)
golang.org/x/pkgsite/internal/database
logging.go#L144: n := atomic.AddInt64(&queryCounter, 1)
google.golang.org/grpc
clientconn.go#L782: atomic.AddInt64(&cc.czData.callsStarted, 1)
clientconn.go#L787: atomic.AddInt64(&cc.czData.callsSucceeded, 1)
clientconn.go#L791: atomic.AddInt64(&cc.czData.callsFailed, 1)
clientconn.go#L1473: atomic.AddInt64(&ac.czData.callsStarted, 1)
clientconn.go#L1478: atomic.AddInt64(&ac.czData.callsSucceeded, 1)
clientconn.go#L1482: atomic.AddInt64(&ac.czData.callsFailed, 1)
server.go#L970: atomic.AddInt64(&s.czData.callsStarted, 1)
server.go#L975: atomic.AddInt64(&s.czData.callsSucceeded, 1)
server.go#L979: atomic.AddInt64(&s.czData.callsFailed, 1)
google.golang.org/grpc/balancer/grpclb
grpclb_picker.go#L82: atomic.AddInt64(&s.numCallsStarted, 1)
grpclb_picker.go#L86: atomic.AddInt64(&s.numCallsFinished, 1)
grpclb_picker.go#L90: atomic.AddInt64(&s.numCallsStarted, 1)
grpclb_picker.go#L91: atomic.AddInt64(&s.numCallsFinishedWithClientFailedToSend, 1)
grpclb_picker.go#L92: atomic.AddInt64(&s.numCallsFinished, 1)
grpclb_picker.go#L96: atomic.AddInt64(&s.numCallsStarted, 1)
grpclb_picker.go#L97: atomic.AddInt64(&s.numCallsFinishedKnownReceived, 1)
grpclb_picker.go#L98: atomic.AddInt64(&s.numCallsFinished, 1)
google.golang.org/grpc/internal/channelz
funcs.go#L738: return atomic.AddInt64(&i.id, 1)
google.golang.org/grpc/internal/transport
http2_client.go#L622: atomic.AddInt64(&t.czData.streamsStarted, 1)
http2_client.go#L777: atomic.AddInt64(&t.czData.streamsSucceeded, 1)
http2_client.go#L779: atomic.AddInt64(&t.czData.streamsFailed, 1)
http2_client.go#L1406: atomic.AddInt64(&t.czData.kpCount, 1)
http2_client.go#L1463: atomic.AddInt64(&t.czData.msgSent, 1)
http2_client.go#L1468: atomic.AddInt64(&t.czData.msgRecv, 1)
http2_server.go#L411: atomic.AddInt64(&t.czData.streamsStarted, 1)
http2_server.go#L1030: atomic.AddInt64(&t.czData.kpCount, 1)
http2_server.go#L1097: atomic.AddInt64(&t.czData.streamsSucceeded, 1)
http2_server.go#L1099: atomic.AddInt64(&t.czData.streamsFailed, 1)
http2_server.go#L1236: atomic.AddInt64(&t.czData.msgSent, 1)
http2_server.go#L1241: atomic.AddInt64(&t.czData.msgRecv, 1)
 |
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. |