net/http.Request.FormValue (method)
15 uses
net/http (current package)
request.go#L1419: func (r *Request) FormValue(key string) string {
net/http/pprof
pprof.go#L147: sec, err := strconv.ParseInt(r.FormValue("seconds"), 10, 64)
pprof.go#L173: sec, err := strconv.ParseFloat(r.FormValue("seconds"), 64)
pprof.go#L258: if sec := r.FormValue("seconds"); sec != "" {
pprof.go#L262: gc, _ := strconv.Atoi(r.FormValue("gc"))
pprof.go#L266: debug, _ := strconv.Atoi(r.FormValue("debug"))
pprof.go#L290: debug, _ := strconv.Atoi(r.FormValue("debug"))
golang.org/x/net/trace
events.go#L92: if exp, err := strconv.ParseBool(req.FormValue("exp")); err == nil {
events.go#L105: fam, bStr := req.FormValue("fam"), req.FormValue("b")
trace.go#L209: if req.FormValue("show_sensitive") == "0" {
trace.go#L213: if exp, err := strconv.ParseBool(req.FormValue("exp")); err == nil {
trace.go#L216: if exp, err := strconv.ParseBool(req.FormValue("rtraced")); err == nil {
trace.go#L292: fam, bStr := req.FormValue("fam"), req.FormValue("b")