Home
last modified time | relevance | path

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

/prebuilts/go/linux-x86/src/crypto/tls/
Dtls.go102 type timeoutError struct{} struct
104 func (timeoutError) Error() string { return "tls: DialWithDialer timed out" }
105 func (timeoutError) Timeout() bool { return true }
106 func (timeoutError) Temporary() bool { return true }
/prebuilts/go/linux-x86/src/net/url/
Durl_test.go1742 type timeoutError struct { struct
1743 timeout bool
1746 func (e *timeoutError) Error() string { return "timeout error" }
1747 func (e *timeoutError) Timeout() bool { return e.timeout }
1757 timeoutError anonMember
/prebuilts/go/linux-x86/src/net/
Dnet.go616 type timeoutError struct{} struct
618 func (e *timeoutError) Error() string { return "i/o timeout" }
619 func (e *timeoutError) Timeout() bool { return true }
620 func (e *timeoutError) Temporary() bool { return true }
622 func (e *timeoutError) Is(err error) bool {
/prebuilts/go/linux-x86/src/net/http/
Dtransport.go2635 type timeoutError struct { struct
2636 err string
2639 func (e *timeoutError) Error() string { return e.err }
2640 func (e *timeoutError) Timeout() bool { return true }
2641 func (e *timeoutError) Temporary() bool { return true }
2642 func (e *timeoutError) Is(err error) bool { return err == context.DeadlineExceeded }