Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for simplifyFunc (0.27 sec)

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

    			quotedNames = append(quotedNames, regexp.QuoteMeta(name))
    		}
    		return regexp.MustCompile(strings.Join(quotedNames, "|"))
    	}()
    )
    
    // simplifyFunc does some primitive simplification of function names.
    func simplifyFunc(f string) string {
    	// Account for leading '.' on the PPC ELF v1 ABI.
    	funcName := strings.TrimPrefix(f, ".")
    	// Account for unsimplified names -- try  to remove the argument list by trimming
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top