func net/http.HandleFunc

10 uses

	net/http (current package)
		server.go#L2862: func HandleFunc(pattern string, handler func(ResponseWriter, *Request)) {

	net/http/pprof
		pprof.go#L100: 	http.HandleFunc(prefix+"/debug/pprof/", Index)
		pprof.go#L101: 	http.HandleFunc(prefix+"/debug/pprof/cmdline", Cmdline)
		pprof.go#L102: 	http.HandleFunc(prefix+"/debug/pprof/profile", Profile)
		pprof.go#L103: 	http.HandleFunc(prefix+"/debug/pprof/symbol", Symbol)
		pprof.go#L104: 	http.HandleFunc(prefix+"/debug/pprof/trace", Trace)

	expvar
		expvar.go#L382: 		http.HandleFunc("/debug/vars", expvarHandler)
		expvar.go#L384: 		http.HandleFunc("GET /debug/vars", expvarHandler)

	golang.org/x/net/trace
		trace.go#L130: 	http.HandleFunc(debugRequestsPath, Traces)
		trace.go#L131: 	http.HandleFunc(debugEventsPath, Events)