Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Unsymbolizable (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/symbolz/symbolz.go

    // and returns the symbolz output in a string. If force is false, it will only
    // symbolize locations from mappings not already marked as HasFunctions. Never
    // attempts symbolization of addresses from unsymbolizable system
    // mappings as those may look negative - e.g. "[vsyscall]".
    func Symbolize(p *profile.Profile, force bool, sources plugin.MappingSources, syms func(string, string) ([]byte, error), ui plugin.UI) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:18:01 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    			continue
    		}
    		if m.File == "" {
    			if midx == 0 {
    				ui.PrintErr("Main binary filename not available.")
    				continue
    			}
    			missingBinaries = true
    			continue
    		}
    		if m.Unsymbolizable() {
    			// Skip well-known system mappings
    			continue
    		}
    		if m.BuildID == "" {
    			if u, err := url.Parse(m.File); err == nil && u.IsAbs() && strings.Contains(strings.ToLower(u.Scheme), "http") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    			return false
    		}
    	}
    	return true
    }
    
    // Unsymbolizable returns true if a mapping points to a binary for which
    // locations can't be symbolized in principle, at least now. Examples are
    // "[vdso]", [vsyscall]" and some others, see the code.
    func (m *Mapping) Unsymbolizable() bool {
    	name := filepath.Base(m.File)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top