Lines Matching full:prof
40 prof := make(map[uint64]Record)
45 rec := prof[ev.StkID]
49 prof[ev.StkID] = rec
51 serveSVGProfile(w, r, prof)
61 prof := make(map[uint64]Record)
72 rec := prof[ev.StkID]
76 prof[ev.StkID] = rec
78 serveSVGProfile(w, r, prof)
88 prof := make(map[uint64]Record)
93 rec := prof[ev.StkID]
97 prof[ev.StkID] = rec
99 serveSVGProfile(w, r, prof)
110 prof := make(map[uint64]Record)
116 rec := prof[ev.StkID]
120 prof[ev.StkID] = rec
122 serveSVGProfile(w, r, prof)
125 // generateSVGProfile generates pprof-like profile stored in prof and writes in to w.
126 func serveSVGProfile(w http.ResponseWriter, r *http.Request, prof map[uint64]Record) {
127 if len(prof) == 0 {
139 for _, rec := range prof {