internal/profile.Profile.KeepFrames (field)

11 uses

	internal/profile (current package)
		encode.go#L95: 	p.keepFramesX = addString(strings, p.KeepFrames)
		encode.go#L275: 	p.KeepFrames, err = getString(p.stringTable, &p.keepFramesX, err)
		legacy_profile.go#L1149: 		p.DropFrames, p.KeepFrames = allocRxStr, allocSkipRxStr
		legacy_profile.go#L1151: 		p.DropFrames, p.KeepFrames = lockRxStr, ""
		legacy_profile.go#L1153: 		p.DropFrames, p.KeepFrames = cpuProfilerRxStr, ""
		merge.go#L423: 		KeepFrames: srcs[0].KeepFrames,
		profile.go#L31: 	KeepFrames string
		prune.go#L89: 		if p.KeepFrames != "" {
		prune.go#L90: 			if keep, err = regexp.Compile("^(" + p.KeepFrames + ")$"); err != nil {
		prune.go#L91: 				return fmt.Errorf("failed to compile regexp %s: %v", p.KeepFrames, err)