net/url.URL.RawPath (field)

19 uses

	net/url (current package)
		url.go#L364: 	RawPath     string    // encoded path hint (see EscapedPath method)
		url.go#L671: 		u.RawPath = ""
		url.go#L673: 		u.RawPath = p
		url.go#L688: 	if u.RawPath != "" && validEncoded(u.RawPath, encodePath) {
		url.go#L689: 		p, err := unescape(u.RawPath, encodePath)
		url.go#L691: 			return u.RawPath

	net/http
		server.go#L2119: 		rp := strings.TrimPrefix(r.URL.RawPath, prefix)
		server.go#L2120: 		if len(p) < len(r.URL.Path) && (r.URL.RawPath == "" || len(rp) < len(r.URL.RawPath)) {
		server.go#L2126: 			r2.URL.RawPath = rp

	net/http/httputil
		reverseproxy.go#L117: 	if a.RawPath == "" && b.RawPath == "" {
		reverseproxy.go#L149: 		req.URL.Path, req.URL.RawPath = joinURLPath(target, req.URL)

	github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations
		update_endpoint.go#L245: 		u.RawPath = strings.Replace(u.RawPath, "/"+httpbinding.EscapePath(bucket, true), "", 1)
		update_endpoint.go#L252: 	if u.RawPath == "" {
		update_endpoint.go#L253: 		u.RawPath = "/"

	github.com/aws/smithy-go/encoding/httpbinding
		encode.go#L55: 	req.URL.Path, req.URL.RawPath = string(e.path), string(e.rawPath)