func github.com/google/pprof/profile.addString

19 uses

	github.com/google/pprof/profile (current package)
		encode.go#L31: 	addString(strings, "")
		encode.go#L34: 		st.typeX = addString(strings, st.Type)
		encode.go#L35: 		st.unitX = addString(strings, st.Unit)
		encode.go#L50: 						keyX: addString(strings, k),
		encode.go#L51: 						strX: addString(strings, v),
		encode.go#L62: 			keyX := addString(strings, k)
		encode.go#L68: 					unitX = addString(strings, units[i])
		encode.go#L86: 		m.fileX = addString(strings, m.File)
		encode.go#L87: 		m.buildIDX = addString(strings, m.BuildID)
		encode.go#L105: 		f.nameX = addString(strings, f.Name)
		encode.go#L106: 		f.systemNameX = addString(strings, f.SystemName)
		encode.go#L107: 		f.filenameX = addString(strings, f.Filename)
		encode.go#L110: 	p.dropFramesX = addString(strings, p.DropFrames)
		encode.go#L111: 	p.keepFramesX = addString(strings, p.KeepFrames)
		encode.go#L114: 		pt.typeX = addString(strings, pt.Type)
		encode.go#L115: 		pt.unitX = addString(strings, pt.Unit)
		encode.go#L120: 		p.commentX = append(p.commentX, addString(strings, c))
		encode.go#L123: 	p.defaultSampleTypeX = addString(strings, p.DefaultSampleType)
		encode.go#L548: func addString(strings map[string]int, s string) int64 {