net/http/internal/httpcommon.ServerRequestParam.Path (field)

7 uses

	net/http/internal/httpcommon (current package)
		httpcommon.go#L537: 	Scheme, Authority, Path string
		httpcommon.go#L603: 		url_, err = url.ParseRequestURI(rp.Path)
		httpcommon.go#L609: 		requestURI = rp.Path

	net/http
		h2_bundle.go#L6196: 		Path:      f.PseudoValue("path"),
		h2_bundle.go#L6207: 		if rp.Protocol == "" && (rp.Path != "" || rp.Scheme != "" || rp.Authority == "") {
		h2_bundle.go#L6210: 	} else if rp.Method == "" || rp.Path == "" || (rp.Scheme != "https" && rp.Scheme != "http") {
		h2_bundle.go#L7188: 			Path:      msg.url.RequestURI(),