Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Unsymbolizable (0.24 sec)

  1. 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)
  2. 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