Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseAdditionalSections (0.14 sec)

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

    		return "", nil, err
    	}
    	if sameAsPrevious {
    		return line, nil, nil
    	}
    	return line, addrs, nil
    }
    
    // parseAdditionalSections parses any additional sections in the
    // profile, ignoring any unrecognized sections.
    func parseAdditionalSections(s *bufio.Scanner, p *Profile) error {
    	for !isMemoryMapSentinel(s.Text()) && s.Scan() {
    	}
    	if err := s.Err(); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
Back to top