Home
last modified time | relevance | path

Searched defs:ClientTrace (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/net/http/httptrace/
Dtrace.go34 func WithClientTrace(ctx context.Context, trace *ClientTrace) context.Context {
80 type ClientTrace struct { struct
85 GetConn func(hostPort string)
91 GotConn func(GotConnInfo)
101 PutIdleConn func(err error)
105 GotFirstResponseByte func()
109 Got100Continue func()
115 Got1xxResponse func(code int, header textproto.MIMEHeader) error
118 DNSStart func(DNSStartInfo)
121 DNSDone func(DNSDoneInfo)
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/net/http/
Dheader.go89 func (h Header) write(w io.Writer, trace *httptrace.ClientTrace) error {
190 func (h Header) writeSubset(w io.Writer, exclude map[string]bool, trace *httptrace.ClientTrace) err…
Dh2_bundle.go10418 func http2traceWroteHeaders(trace *httptrace.ClientTrace) {
10424 func http2traceGot100Continue(trace *httptrace.ClientTrace) {
10430 func http2traceWait100Continue(trace *httptrace.ClientTrace) {
10436 func http2traceWroteRequest(trace *httptrace.ClientTrace, err error) {
10442 func http2traceFirstResponseByte(trace *httptrace.ClientTrace) {
10448 func http2traceHasWroteHeaderField(trace *httptrace.ClientTrace) bool {
10452 func http2traceWroteHeaderField(trace *httptrace.ClientTrace, k, v string) {
10458 func http2traceGot1xxResponseFunc(trace *httptrace.ClientTrace) func(int, textproto.MIMEHeader) err…
Dtransport.go1629 func (pconn *persistConn) addTLS(ctx context.Context, name string, trace *httptrace.ClientTrace) er…