vendor/golang.org/x/net/http2/hpack.HeaderField.Value (field)

39 uses

	vendor/golang.org/x/net/http2/hpack (current package)
		encode.go#L158: 	return appendHpackString(dst, f.Value)
		encode.go#L178: 	return appendHpackString(dst, f.Value)
		hpack.go#L37: 	Name, Value string
		hpack.go#L57: 	return fmt.Sprintf("header field %q = %q%s", hf.Name, hf.Value, suffix)
		hpack.go#L74: 	return uint32(len(hf.Name) + len(hf.Value) + 32)
		hpack.go#L349: 	return d.callEmit(HeaderField{Name: hf.Name, Value: hf.Value})
		hpack.go#L374: 	hf.Value, buf, err = d.readString(buf, wantStr)
		hpack.go#L388: 		if len(hf.Name) > d.maxStrLen || len(hf.Value) > d.maxStrLen {
		tables.go#L59: 	t.byNameValue[pairNameValue{f.Name, f.Value}] = id
		tables.go#L74: 		if p := (pairNameValue{f.Name, f.Value}); t.byNameValue[p] == id {
		tables.go#L105: 		if id := t.byNameValue[pairNameValue{f.Name, f.Value}]; id != 0 {
		tables.go#L132: 	{Name: ":method", Value: "GET"},
		tables.go#L133: 	{Name: ":method", Value: "POST"},
		tables.go#L134: 	{Name: ":path", Value: "/"},
		tables.go#L135: 	{Name: ":path", Value: "/index.html"},
		tables.go#L136: 	{Name: ":scheme", Value: "http"},
		tables.go#L137: 	{Name: ":scheme", Value: "https"},
		tables.go#L138: 	{Name: ":status", Value: "200"},
		tables.go#L139: 	{Name: ":status", Value: "204"},
		tables.go#L140: 	{Name: ":status", Value: "206"},
		tables.go#L141: 	{Name: ":status", Value: "304"},
		tables.go#L142: 	{Name: ":status", Value: "400"},
		tables.go#L143: 	{Name: ":status", Value: "404"},
		tables.go#L144: 	{Name: ":status", Value: "500"},
		tables.go#L146: 	{Name: "accept-encoding", Value: "gzip, deflate"},

	net/http
		h2_bundle.go#L2657: 			return hf.Value
		h2_bundle.go#L2743: 		if !httpguts.ValidHeaderFieldValue(hf.Value) {
		h2_bundle.go#L2744: 			invalid = http2headerFieldValueError(hf.Value)
		h2_bundle.go#L5480: 			st.trailer[key] = append(st.trailer[key], hf.Value)
		h2_bundle.go#L5583: 		rp.header.Add(sc.canonicalHeader(hf.Name), hf.Value)
		h2_bundle.go#L8108: 		hf := hpack.HeaderField{Name: name, Value: value}
		h2_bundle.go#L8160: 			hf := hpack.HeaderField{Name: k, Value: v}
		h2_bundle.go#L8183: 	cc.henc.WriteField(hpack.HeaderField{Name: name, Value: value})
		h2_bundle.go#L8492: 			http2foreachHeaderElement(hf.Value, func(v string) {
		h2_bundle.go#L8503: 				vv[0] = hf.Value
		h2_bundle.go#L8506: 				header[key] = append(vv, hf.Value)
		h2_bundle.go#L8589: 		trailer[key] = append(trailer[key], hf.Value)
		h2_bundle.go#L9445: 	enc.WriteField(hpack.HeaderField{Name: k, Value: v})