github.com/google/pprof/profile.Profile.KeepFrames (field)

11 uses

	github.com/google/pprof/profile (current package)
		encode.go#L111: 	p.keepFramesX = addString(strings, p.KeepFrames)
		encode.go#L347: 	p.KeepFrames, err = getString(p.stringTable, &p.keepFramesX, err)
		legacy_profile.go#L1093: 		p.DropFrames, p.KeepFrames = allocRxStr, allocSkipRxStr
		legacy_profile.go#L1095: 		p.DropFrames, p.KeepFrames = lockRxStr, ""
		legacy_profile.go#L1097: 		p.DropFrames, p.KeepFrames = cpuProfilerRxStr, ""
		merge.go#L441: 		KeepFrames: srcs[0].KeepFrames,
		profile.go#L44: 	KeepFrames string
		prune.go#L129: 		if p.KeepFrames != "" {
		prune.go#L130: 			if keep, err = regexp.Compile("^(" + p.KeepFrames + ")$"); err != nil {
		prune.go#L131: 				return fmt.Errorf("failed to compile regexp %s: %v", p.KeepFrames, err)