Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for encodeMessage (0.17 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    func (p *Profile) encode(b *buffer) {
    	for _, x := range p.SampleType {
    		encodeMessage(b, 1, x)
    	}
    	for _, x := range p.Sample {
    		encodeMessage(b, 2, x)
    	}
    	for _, x := range p.Mapping {
    		encodeMessage(b, 3, x)
    	}
    	for _, x := range p.Location {
    		encodeMessage(b, 4, x)
    	}
    	for _, x := range p.Function {
    		encodeMessage(b, 5, x)
    	}
    	encodeStrings(b, 6, p.stringTable)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top