Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FilterSamplesByName (0.2 sec)

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

    package profile
    
    // Implements methods to filter samples from profiles.
    
    import "regexp"
    
    // FilterSamplesByName filters the samples in a profile and only keeps
    // samples where at least one frame matches focus but none match ignore.
    // Returns true is the corresponding regexp matched at least one sample.
    func (p *Profile) FilterSamplesByName(focus, ignore, hide, show *regexp.Regexp) (fm, im, hm, hnm bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/driver_focus.go

    	prunefrom, err := compileRegexOption("prune_from", cfg.PruneFrom, err)
    	if err != nil {
    		return err
    	}
    
    	fm, im, hm, hnm := prof.FilterSamplesByName(focus, ignore, hide, show)
    	warnNoMatches(focus == nil || fm, "Focus", ui)
    	warnNoMatches(ignore == nil || im, "Ignore", ui)
    	warnNoMatches(hide == nil || hm, "Hide", ui)
    	warnNoMatches(show == nil || hnm, "Show", ui)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 6.4K bytes
    - Viewed (0)
Back to top