Home
last modified time | relevance | path

Searched refs:ctxDone (Results 1 – 4 of 4) sorted by relevance

/external/syzkaller/vendor/google.golang.org/grpc/transport/
Dhttp2_server.go58 ctxDone <-chan struct{} // Cache the context.Done() chan member
206 ctxDone: ctx.Done(),
225 t.controlBuf = newControlBuffer(t.ctxDone)
407 s.ctxDone = s.ctx.Done()
408 s.wq = newWriteQuota(defaultWriteQuota, s.ctxDone)
412 ctxDone: s.ctxDone,
1129 case <-t.ctxDone:
Dtransport.go118 ctxDone <-chan struct{} // cache of ctx.Done() (for performance). member
143 case <-r.ctxDone:
172ctxDone <-chan struct{} // same as done chan but for server side. Cache of ctx.Done() (for… member
Dhttp2_client.go48 ctxDone <-chan struct{} // Cache the ctx.Done() chan. member
209 ctxDone: ctx.Done(), // Cache Done chan.
236 t.controlBuf = newControlBuffer(t.ctxDone)
338 ctxDone: s.ctx.Done(),
1295 case <-t.ctxDone:
Dhandler_server.go368 reader: &recvBufferReader{ctx: s.ctx, ctxDone: s.ctx.Done(), recv: s.buf},