type golang.org/x/net/context.Context

15 uses

	golang.org/x/net/context (current package)
		context.go#L45: func Background() Context {
		context.go#L54: func TODO() Context {
		go17.go#L33: func WithCancel(parent Context) (ctx Context, cancel CancelFunc) {
		go17.go#L47: func WithDeadline(parent Context, deadline time.Time) (Context, CancelFunc) {
		go17.go#L62: func WithTimeout(parent Context, timeout time.Duration) (Context, CancelFunc) {
		go17.go#L71: func WithValue(parent Context, key interface{}, val interface{}) Context {
		go19.go#L16: type Context = context.Context

	github.com/jbenet/go-context/io
		ctxio.go#L30: 	ctx context.Context
		ctxio.go#L47: func NewWriter(ctx context.Context, w io.Writer) *ctxWriter {
		ctxio.go#L80: 	ctx context.Context
		ctxio.go#L98: func NewReader(ctx context.Context, r io.Reader) *ctxReader {