func time.AfterFunc

9 uses

	time (current package)
		sleep.go#L210: func AfterFunc(d Duration, f func()) *Timer {

	context
		context.go#L638: 		c.timer = time.AfterFunc(dur, func() {

	crypto/rand
		rand_unix.go#L53: 		t := time.AfterFunc(time.Minute, warnBlocked)

	net
		pipe.go#L54: 		d.timer = time.AfterFunc(dur, func() {

	net/http
		h2_bundle.go#L4019: 	return http2timeTimer{time.AfterFunc(d, f)}
		h2_bundle.go#L7355: 	return http2timeTimer{time.AfterFunc(d, f)}
		h2_bundle.go#L8207: 	t := time.AfterFunc(250*time.Millisecond, cc.forceCloseConn)
		transport.go#L1086: 			pconn.idleTimer = time.AfterFunc(t.IdleConnTimeout, pconn.closeConnIfStillIdle)
		transport.go#L1643: 		timer = time.AfterFunc(d, func() {