Home
last modified time | relevance | path

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

/external/syzkaller/vendor/golang.org/x/net/context/
Dpre_go17.go71 func newCancelCtx(parent Context) *cancelCtx {
72 return &cancelCtx{
109 func parentCancelCtx(parent Context) (*cancelCtx, bool) {
112 case *cancelCtx:
115 return c.cancelCtx, true
146 type cancelCtx struct { struct
156 func (c *cancelCtx) Done() <-chan struct{} { argument
160 func (c *cancelCtx) Err() error { argument
166 func (c *cancelCtx) String() string { argument
172 func (c *cancelCtx) cancel(removeFromParent bool, err error) { argument
[all …]
/external/syzkaller/vendor/golang.org/x/net/http2/
Dserver.go534 cancelCtx func() member
1437 st.cancelCtx()
1865 ctx, cancelCtx := contextWithCancel(sc.baseCtx)
1871 cancelCtx: cancelCtx,
2051 rw.rws.stream.cancelCtx()