Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for showframe (0.21 sec)

  1. src/runtime/traceback.go

    func gcallers(gp *g, skip int, pcbuf []uintptr) int {
    	var u unwinder
    	u.init(gp, unwindSilentErrors)
    	return tracebackPCs(&u, skip, pcbuf)
    }
    
    // showframe reports whether the frame with the given characteristics should
    // be printed during a traceback.
    func showframe(sf srcFunc, gp *g, firstFrame bool, calleeID abi.FuncID) bool {
    	mp := getg().m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    // ShowFrom(C) returns true and has frames [C, B].
    // ShowFrom(D) returns false and drops the sample because no frames remain.
    func (p *Profile) ShowFrom(showFrom *regexp.Regexp) (matched bool) {
    	if showFrom == nil {
    		return false
    	}
    	// showFromLocs stores location IDs that matched ShowFrom.
    	showFromLocs := make(map[uint64]bool)
    	// Apply to locations.
    	for _, loc := range p.Location {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/driver_focus.go

    	warnNoMatches(ignore == nil || im, "Ignore", ui)
    	warnNoMatches(hide == nil || hm, "Hide", ui)
    	warnNoMatches(show == nil || hnm, "Show", ui)
    
    	sfm := prof.ShowFrom(showfrom)
    	warnNoMatches(showfrom == nil || sfm, "ShowFrom", ui)
    
    	tfm, tim := prof.FilterSamplesByTag(tagfocus, tagignore)
    	warnNoMatches(tagfocus == nil || tfm, "TagFocus", ui)
    	warnNoMatches(tagignore == nil || tim, "TagIgnore", 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)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.html

        <a title="{{.Help.ignore}}" id="action-ignore" href="?">Ignore</a>
        <a title="{{.Help.hide}}" id="action-hide" href="?">Hide</a>
        <a title="{{.Help.show_from}}" id="action-showfrom" href="?">Show from</a>
      </div>
      {{template "script" .}}
      {{template "stacks_js"}}
      <script>
        pprofUnitDefs = {{.UnitDefs}};
        stackViewer({{.Stacks}}, {{.Nodes}});
      </script>
    </body>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    			filters = append(filters, k+"="+v)
    		}
    	}
    	addFilter("focus", cfg.Focus)
    	addFilter("ignore", cfg.Ignore)
    	addFilter("hide", cfg.Hide)
    	addFilter("show", cfg.Show)
    	addFilter("show_from", cfg.ShowFrom)
    	addFilter("tagfocus", cfg.TagFocus)
    	addFilter("tagignore", cfg.TagIgnore)
    	addFilter("tagshow", cfg.TagShow)
    	addFilter("taghide", cfg.TagHide)
    
    	ropt := &report.Options{
    		CumSort:      cfg.Sort == "cum",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	Ignore       string  `json:"ignore,omitempty"`
    	PruneFrom    string  `json:"prune_from,omitempty"`
    	Hide         string  `json:"hide,omitempty"`
    	Show         string  `json:"show,omitempty"`
    	ShowFrom     string  `json:"show_from,omitempty"`
    	TagFocus     string  `json:"tagfocus,omitempty"`
    	TagIgnore    string  `json:"tagignore,omitempty"`
    	TagShow      string  `json:"tagshow,omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        setHrefParam('action-source-tab', 'f', box.src);
        setHrefParam('action-focus', 'f', box.src);
        setHrefParam('action-ignore', 'i', box.src);
        setHrefParam('action-hide', 'h', box.src);
        setHrefParam('action-showfrom', 'sf', box.src);
        toggleClass(box.src, 'hilite2', true);
        actionTarget = box;
        actionMenuOn = true;
      }
    
      function hideActionMenu() {
        actions.style.display = 'none';
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top