type net/http/httptrace.ClientTrace

23 uses

	net/http/httptrace (current package)
		trace.go#L24: func ContextClientTrace(ctx context.Context) *ClientTrace {
		trace.go#L25: 	trace, _ := ctx.Value(clientEventContextKey{}).(*ClientTrace)
		trace.go#L34: func WithClientTrace(ctx context.Context, trace *ClientTrace) context.Context {
		trace.go#L80: type ClientTrace struct {
		trace.go#L175: func (t *ClientTrace) compose(old *ClientTrace) {
		trace.go#L229: func (t *ClientTrace) hasNetHooks() bool {

	net/http
		h2_bundle.go#L3061: func http2traceHasWroteHeaderField(trace *httptrace.ClientTrace) bool {
		h2_bundle.go#L3065: func http2traceWroteHeaderField(trace *httptrace.ClientTrace, k, v string) {
		h2_bundle.go#L3071: func http2traceGot1xxResponseFunc(trace *httptrace.ClientTrace) func(int, textproto.MIMEHeader) error {
		h2_bundle.go#L7442: 	trace         *httptrace.ClientTrace // or nil
		h2_bundle.go#L10242: func http2traceWroteHeaders(trace *httptrace.ClientTrace) {
		h2_bundle.go#L10248: func http2traceGot100Continue(trace *httptrace.ClientTrace) {
		h2_bundle.go#L10254: func http2traceWait100Continue(trace *httptrace.ClientTrace) {
		h2_bundle.go#L10260: func http2traceWroteRequest(trace *httptrace.ClientTrace, err error) {
		h2_bundle.go#L10266: func http2traceFirstResponseByte(trace *httptrace.ClientTrace) {
		header.go#L89: func (h Header) write(w io.Writer, trace *httptrace.ClientTrace) error {
		header.go#L196: func (h Header) writeSubset(w io.Writer, exclude map[string]bool, trace *httptrace.ClientTrace) error {
		transfer.go#L276: func (t *transferWriter) writeHeader(w io.Writer, trace *httptrace.ClientTrace) error {
		transport.go#L466: 	trace     *httptrace.ClientTrace // optional
		transport.go#L1533: func (pconn *persistConn) addTLS(ctx context.Context, name string, trace *httptrace.ClientTrace) error {
		transport.go#L2090: 	tryPutIdleConn := func(trace *httptrace.ClientTrace) bool {
		transport.go#L2300: func (pc *persistConn) readResponse(rc requestAndChan, trace *httptrace.ClientTrace) (resp *Response, err error) {