func net/http.HandleFunc

7 uses

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

	expvar
		expvar.go#L364: 	http.HandleFunc("/debug/vars", expvarHandler)

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

	golang.org/x/pkgsite/cmd/prober
		main.go#L254: 	http.HandleFunc("/favicon.ico", func(w http.ResponseWriter, r *http.Request) {
		main.go#L257: 	http.HandleFunc("/", handleProbe)
		main.go#L258: 	http.HandleFunc("/check", handleCheck)