Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HasFunctions (0.1 sec)

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

    			fillIdx++
    		}
    	}
    	p.Sample = p.Sample[:fillIdx]
    	return nil
    }
    
    // HasFunctions determines if all locations in this profile have
    // symbolized function information.
    func (p *Profile) HasFunctions() bool {
    	for _, l := range p.Location {
    		if l.Mapping != nil && !l.Mapping.HasFunctions {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    		if len(locs) == 0 {
    			// The mapping is dangling and has no locations pointing to it.
    			continue
    		}
    		// Do not attempt to re-symbolize a mapping that has already been symbolized.
    		if !force && (m.HasFunctions || m.HasFilenames || m.HasLineNumbers) {
    			continue
    		}
    		if m.File == "" {
    			if midx == 0 {
    				ui.PrintErr("Main binary filename not available.")
    				continue
    			}
    			missingBinaries = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top