type github.com/google/pprof/profile.Mapping

37 uses

	github.com/google/pprof/profile (current package)
		encode.go#L178: 		x := new(Mapping)
		encode.go#L245: 	mappings := make(map[uint64]*Mapping, len(p.Mapping))
		encode.go#L246: 	mappingIds := make([]*Mapping, len(p.Mapping)+1)
		encode.go#L446: func (p *Mapping) decoder() []decoder {
		encode.go#L450: func (p *Mapping) encode(b *buffer) {
		encode.go#L465: 	func(b *buffer, m message) error { return decodeUint64(b, &m.(*Mapping).ID) },            // optional uint64 id = 1
		encode.go#L466: 	func(b *buffer, m message) error { return decodeUint64(b, &m.(*Mapping).Start) },         // optional uint64 memory_offset = 2
		encode.go#L467: 	func(b *buffer, m message) error { return decodeUint64(b, &m.(*Mapping).Limit) },         // optional uint64 memory_limit = 3
		encode.go#L468: 	func(b *buffer, m message) error { return decodeUint64(b, &m.(*Mapping).Offset) },        // optional uint64 file_offset = 4
		encode.go#L469: 	func(b *buffer, m message) error { return decodeInt64(b, &m.(*Mapping).fileX) },          // optional int64 filename = 5
		encode.go#L470: 	func(b *buffer, m message) error { return decodeInt64(b, &m.(*Mapping).buildIDX) },       // optional int64 build_id = 6
		encode.go#L471: 	func(b *buffer, m message) error { return decodeBool(b, &m.(*Mapping).HasFunctions) },    // optional bool has_functions = 7
		encode.go#L472: 	func(b *buffer, m message) error { return decodeBool(b, &m.(*Mapping).HasFilenames) },    // optional bool has_filenames = 8
		encode.go#L473: 	func(b *buffer, m message) error { return decodeBool(b, &m.(*Mapping).HasLineNumbers) },  // optional bool has_line_numbers = 9
		encode.go#L474: 	func(b *buffer, m message) error { return decodeBool(b, &m.(*Mapping).HasInlineFrames) }, // optional bool has_inline_frames = 10
		legacy_profile.go#L216: 	var fake *Mapping
		legacy_profile.go#L243: 			fake = &Mapping{
		legacy_profile.go#L969: func ParseProcMaps(rd io.Reader) ([]*Mapping, error) {
		legacy_profile.go#L974: func parseProcMapsFromScanner(s *bufio.Scanner) ([]*Mapping, error) {
		legacy_profile.go#L975: 	var mapping []*Mapping
		legacy_profile.go#L1041: func parseMappingEntry(l string) (*Mapping, error) {
		legacy_profile.go#L1052: 	mapping := &Mapping{
		merge.go#L53: 		mappings:  make(map[mappingKey]*Mapping, len(srcs[0].Mapping)),
		merge.go#L144: 	mappings  map[mappingKey]*Mapping
		merge.go#L148: 	m      *Mapping
		merge.go#L287: func (pm *profileMerger) mapMapping(src *Mapping) mapInfo {
		merge.go#L303: 	m := &Mapping{
		merge.go#L326: func (m *Mapping) key() mappingKey {
		profile.go#L38: 	Mapping           []*Mapping
		profile.go#L94: type Mapping struct {
		profile.go#L113: 	Mapping  *Mapping
		profile.go#L233: 		mappings := []*Mapping{p.Mapping[0]}
		profile.go#L278: func adjacent(m1, m2 *Mapping) bool {
		profile.go#L301: func (p *Profile) updateLocationMapping(from, to *Mapping) {
		profile.go#L357: 	mappings := make(map[uint64]*Mapping, len(p.Mapping))
		profile.go#L568: func (m *Mapping) string() string {
		profile.go#L777: func (m *Mapping) Unsymbolizable() bool {