type runtime/pprof.Profile

22 uses

	runtime/pprof (current package)
		pprof.go#L172: type Profile struct {
		pprof.go#L183: 	m  map[string]*Profile
		pprof.go#L186: var goroutineProfile = &Profile{
		pprof.go#L192: var threadcreateProfile = &Profile{
		pprof.go#L198: var heapProfile = &Profile{
		pprof.go#L204: var allocsProfile = &Profile{
		pprof.go#L210: var blockProfile = &Profile{
		pprof.go#L216: var mutexProfile = &Profile{
		pprof.go#L226: 		profiles.m = map[string]*Profile{
		pprof.go#L247: func NewProfile(name string) *Profile {
		pprof.go#L256: 	p := &Profile{
		pprof.go#L265: func Lookup(name string) *Profile {
		pprof.go#L272: func Profiles() []*Profile {
		pprof.go#L276: 	all := make([]*Profile, 0, len(profiles.m))
		pprof.go#L281: 	slices.SortFunc(all, func(a, b *Profile) int {
		pprof.go#L288: func (p *Profile) Name() string {
		pprof.go#L293: func (p *Profile) Count() int {
		pprof.go#L319: func (p *Profile) Add(value any, skip int) {
		pprof.go#L345: func (p *Profile) Remove(value any) {
		pprof.go#L366: 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) {