Home
last modified time | relevance | path

Searched refs:shutdownTimer (Results 1 – 2 of 2) sorted by relevance

/external/grpc-grpc-java/grpclb/src/main/java/io/grpc/grpclb/
DCachedSubchannelPool.java61 entry.shutdownTimer.cancel(false); in takeOrCreateSubchannel()
79 ScheduledFuture<?> shutdownTimer = in returnSubchannel() local
83 shutdownTask.timer = shutdownTimer; in returnSubchannel()
84 CacheEntry entry = new CacheEntry(subchannel, shutdownTimer); in returnSubchannel()
91 entry.shutdownTimer.cancel(false); in clear()
135 final ScheduledFuture<?> shutdownTimer; field in CachedSubchannelPool.CacheEntry
137 CacheEntry(Subchannel subchannel, ScheduledFuture<?> shutdownTimer) { in CacheEntry() argument
139 this.shutdownTimer = checkNotNull(shutdownTimer, "shutdownTimer"); in CacheEntry()
/external/syzkaller/vendor/golang.org/x/net/http2/
Dserver.go492 shutdownTimer *time.Timer // nil until used member
741 if t := sc.shutdownTimer; t != nil {
865 …if sentGoAway && sc.shutdownTimer == nil && (sc.goAwayCode != ErrCodeNo || gracefulShutdownComplet…
1266 sc.shutdownTimer = time.AfterFunc(d, sc.onShutdownTimer)