Lines Matching refs:http
9 "net/http"
22 // This file contains web UI http handlers.
25 http.Handle("/", handlerWrapper(handleMain))
26 http.Handle("/bug", handlerWrapper(handleBug))
27 http.Handle("/text", handlerWrapper(handleText))
28 http.Handle("/x/.config", handlerWrapper(handleTextX(textKernelConfig)))
29 http.Handle("/x/log.txt", handlerWrapper(handleTextX(textCrashLog)))
30 http.Handle("/x/repro.syz", handlerWrapper(handleTextX(textReproSyz)))
31 http.Handle("/x/repro.c", handlerWrapper(handleTextX(textReproC)))
32 http.Handle("/x/patch.diff", handlerWrapper(handleTextX(textPatch)))
33 http.Handle("/x/error.txt", handlerWrapper(handleTextX(textError)))
158 func handleMain(c context.Context, w http.ResponseWriter, r *http.Request) error {
193 func handleBug(c context.Context, w http.ResponseWriter, r *http.Request) error {
262 func handleTextImpl(c context.Context, w http.ResponseWriter, r *http.Request, tag string) error {
304 func handleText(c context.Context, w http.ResponseWriter, r *http.Request) error {
309 return func(c context.Context, w http.ResponseWriter, r *http.Request) error {
335 func fetchBugs(c context.Context, r *http.Request) ([]*uiBugNamespace, error) {
456 func loadDupsForBug(c context.Context, r *http.Request, bug *Bug, state *ReportingState, managers []string) (
485 func loadSimilarBugs(c context.Context, r *http.Request, bug *Bug, state *ReportingState) (*uiBugGroup, error) {