type runtime/pprof.Profile
22 uses
runtime/pprof (current package)
pprof.go#L178: type Profile struct {
pprof.go#L189: m map[string]*Profile
pprof.go#L192: var goroutineProfile = &Profile{
pprof.go#L198: var threadcreateProfile = &Profile{
pprof.go#L204: var heapProfile = &Profile{
pprof.go#L210: var allocsProfile = &Profile{
pprof.go#L216: var blockProfile = &Profile{
pprof.go#L222: var mutexProfile = &Profile{
pprof.go#L232: profiles.m = map[string]*Profile{
pprof.go#L253: func NewProfile(name string) *Profile {
pprof.go#L262: p := &Profile{
pprof.go#L271: func Lookup(name string) *Profile {
pprof.go#L278: func Profiles() []*Profile {
pprof.go#L282: all := make([]*Profile, 0, len(profiles.m))
pprof.go#L287: slices.SortFunc(all, func(a, b *Profile) int {
pprof.go#L294: func (p *Profile) Name() string {
pprof.go#L299: func (p *Profile) Count() int {
pprof.go#L325: func (p *Profile) Add(value any, skip int) {
pprof.go#L351: func (p *Profile) Remove(value any) {
pprof.go#L372: func (p *Profile) WriteTo(w io.Writer, debug int) error {
net/http/pprof
pprof.go#L275: func (name handler) serveDeltaProfile(w http.ResponseWriter, r *http.Request, p *pprof.Profile, secStr string) {
pprof.go#L339: func collectProfile(p *pprof.Profile) (*profile.Profile, error) {