type net/http.http2clientConnPool

15 uses

	net/http (current package)
		h2_bundle.go#L705: 	_ http2clientConnPoolIdleCloser = (*http2clientConnPool)(nil)
		h2_bundle.go#L710: type http2clientConnPool struct {
		h2_bundle.go#L722: func (p *http2clientConnPool) GetClientConn(req *Request, addr string) (*http2ClientConn, error) {
		h2_bundle.go#L738: func (p *http2clientConnPool) shouldTraceGetConn(st http2clientConnIdleState) bool {
		h2_bundle.go#L752: func (p *http2clientConnPool) getClientConn(req *Request, addr string, dialOnMiss bool) (*http2ClientConn, error) {
		h2_bundle.go#L787: 	p    *http2clientConnPool
		h2_bundle.go#L794: func (p *http2clientConnPool) getStartDialLocked(addr string) *http2dialCall {
		h2_bundle.go#L830: func (p *http2clientConnPool) addConnIfNeeded(key string, t *http2Transport, c *tls.Conn) (used bool, err error) {
		h2_bundle.go#L861: 	p    *http2clientConnPool
		h2_bundle.go#L882: func (p *http2clientConnPool) addConnLocked(key string, cc *http2ClientConn) {
		h2_bundle.go#L898: func (p *http2clientConnPool) MarkDead(cc *http2ClientConn) {
		h2_bundle.go#L916: func (p *http2clientConnPool) closeIdleConnections() {
		h2_bundle.go#L950: type http2noDialClientConnPool struct{ *http2clientConnPool }
		h2_bundle.go#L6674: 	connPool := new(http2clientConnPool)
		h2_bundle.go#L6725: 		t.connPoolOrDef = &http2clientConnPool{t: t}