type time.Timer

25 uses

	time (current package)
		sleep.go#L72: func newTimer(when, period int64, f func(any, uintptr, int64), arg any, cp unsafe.Pointer) *Timer
		sleep.go#L75: func stopTimer(*Timer) bool
		sleep.go#L78: func resetTimer(t *Timer, when, period int64) bool
		sleep.go#L89: type Timer struct {
		sleep.go#L113: func (t *Timer) Stop() bool {
		sleep.go#L143: func NewTimer(d Duration) *Timer {
		sleep.go#L171: func (t *Timer) Reset(d Duration) bool {
		sleep.go#L210: func AfterFunc(d Duration, f func()) *Timer {
		tick.go#L59: 	stopTimer((*Timer)(unsafe.Pointer(t)))
		tick.go#L72: 	resetTimer((*Timer)(unsafe.Pointer(t)), when(d), int64(d))

	context
		context.go#L664: 	timer *time.Timer // Under cancelCtx.mu.

	github.com/cenkalti/backoff/v4
		timer.go#L13: 	timer *time.Timer

	github.com/coder/websocket
		netconn.go#L100: 	writeTimer   *time.Timer
		netconn.go#L106: 	readTimer   *time.Timer

	github.com/gotd/td/clock
		system.go#L6: 	timer *time.Timer

	net
		pipe.go#L17: 	timer  *time.Timer

	net/http
		h2_bundle.go#L4621: 	shutdownTimer               *time.Timer // nil until used
		h2_bundle.go#L4622: 	idleTimer                   *time.Timer // nil if unused
		h2_bundle.go#L4625: 	readIdleTimer               *time.Timer // nil if unused
		h2_bundle.go#L4673: 	readDeadline     *time.Timer // nil if unused
		h2_bundle.go#L4674: 	writeDeadline    *time.Timer // nil if unused
		h2_bundle.go#L7616: 	idleTimer   *time.Timer
		h2_bundle.go#L9545: 	var t *time.Timer
		transport.go#L1726: 	var timer *time.Timer // for canceling TLS handshake
		transport.go#L2146: 	idleTimer *time.Timer // holding an AfterFunc to close it