/external/toolchain-utils/user_activity_benchmarks/ |
collect_pprof_data.sh | 6 # Collects the pprof tree and top outputs. 9 # The pprof top output is stored in the pprof_top_results_path and the pprof 27 pprof --top "$LOCAL_CWP_RESULTS_PATH/${symbolized_profile}" > \ 28 "$PPROF_TOP_RESULTS_PATH/${symbolized_profile}.pprof" 30 echo "Failed to extract the pprof top output for the $symbolized_profile." 34 pprof --tree "$LOCAL_CWP_RESULTS_PATH/${symbolized_profile}" > \ 35 "$PPROF_TREE_RESULTS_PATH/${symbolized_profile}.pprof" 37 echo "Failed to extract the pprof tree output for the " \
|
/prebuilts/go/darwin-x86/src/net/http/pprof/ |
pprof.go | 5 // Package pprof serves via its HTTP server runtime profiling data 6 // in the format expected by the pprof visualization tool. 10 // The handled paths all begin with /debug/pprof/. 12 // To use pprof, link this package into your program: 13 // import _ "net/http/pprof" 23 // Then use the pprof tool to look at the heap profile: 25 // go tool pprof http://localhost:6060/debug/pprof/heap 29 // go tool pprof http://localhost:6060/debug/pprof/profil 47 package pprof package [all...] |
/prebuilts/go/linux-x86/src/net/http/pprof/ |
pprof.go | 5 // Package pprof serves via its HTTP server runtime profiling data 6 // in the format expected by the pprof visualization tool. 10 // The handled paths all begin with /debug/pprof/. 12 // To use pprof, link this package into your program: 13 // import _ "net/http/pprof" 23 // Then use the pprof tool to look at the heap profile: 25 // go tool pprof http://localhost:6060/debug/pprof/heap 29 // go tool pprof http://localhost:6060/debug/pprof/profil 47 package pprof package [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
util.go | 10 "runtime/pprof" 46 if err := pprof.StartCPUProfile(f); err != nil { 49 atExit(pprof.StopCPUProfile) 63 // which are only written in the legacy pprof format. 64 // See golang.org/issue/18641 and runtime/pprof/pprof.go:writeHeap. 66 if err := pprof.Lookup("heap").WriteTo(f, writeLegacyFormat); err != nil {
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
util.go | 10 "runtime/pprof" 46 if err := pprof.StartCPUProfile(f); err != nil { 49 atExit(pprof.StopCPUProfile) 63 // which are only written in the legacy pprof format. 64 // See golang.org/issue/18641 and runtime/pprof/pprof.go:writeHeap. 66 if err := pprof.Lookup("heap").WriteTo(f, writeLegacyFormat); err != nil {
|
/prebuilts/go/darwin-x86/src/runtime/pprof/ |
mprof_test.go | 13 . "runtime/pprof" 89 # 0x[0-9,a-f]+ runtime/pprof_test\.allocatePersistent1K\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test\.go:41 90 # 0x[0-9,a-f]+ runtime/pprof_test\.TestMemoryProfiler\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test\.go:75 94 # 0x[0-9,a-f]+ runtime/pprof_test\.allocateTransient1M\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test.go:22 95 # 0x[0-9,a-f]+ runtime/pprof_test\.TestMemoryProfiler\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test.go:73 99 # 0x[0-9,a-f]+ runtime/pprof_test\.allocateTransient2M\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test.go:28 100 # 0x[0-9,a-f]+ runtime/pprof_test\.TestMemoryProfiler\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test.go:74 104 # 0x[0-9,a-f]+ runtime/pprof_test\.allocateReflectTransient\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test.go:49
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue9321.go | 12 "runtime/pprof" 22 pprof.Lookup("goroutine").WriteTo(buf, 2)
|
/prebuilts/go/linux-x86/src/runtime/pprof/ |
mprof_test.go | 13 . "runtime/pprof" 89 # 0x[0-9,a-f]+ runtime/pprof_test\.allocatePersistent1K\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test\.go:41 90 # 0x[0-9,a-f]+ runtime/pprof_test\.TestMemoryProfiler\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test\.go:75 94 # 0x[0-9,a-f]+ runtime/pprof_test\.allocateTransient1M\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test.go:22 95 # 0x[0-9,a-f]+ runtime/pprof_test\.TestMemoryProfiler\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test.go:73 99 # 0x[0-9,a-f]+ runtime/pprof_test\.allocateTransient2M\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test.go:28 100 # 0x[0-9,a-f]+ runtime/pprof_test\.TestMemoryProfiler\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test.go:74 104 # 0x[0-9,a-f]+ runtime/pprof_test\.allocateReflectTransient\+0x[0-9,a-f]+ .*/runtime/pprof/mprof_test.go:49
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue9321.go | 12 "runtime/pprof" 22 pprof.Lookup("goroutine").WriteTo(buf, 2)
|
/prebuilts/go/darwin-x86/src/testing/internal/testdeps/ |
deps.go | 16 "runtime/pprof" 38 return pprof.StartCPUProfile(w) 42 pprof.StopCPUProfile() 46 return pprof.WriteHeapProfile(w) 50 return pprof.Lookup(name).WriteTo(w, debug)
|
/prebuilts/go/linux-x86/src/testing/internal/testdeps/ |
deps.go | 16 "runtime/pprof" 38 return pprof.StartCPUProfile(w) 42 pprof.StopCPUProfile() 46 return pprof.WriteHeapProfile(w) 50 return pprof.Lookup(name).WriteTo(w, debug)
|
/prebuilts/go/darwin-x86/src/cmd/trace/ |
main.go | 10 - net/http/pprof package 18 Generate a pprof-like profile from the trace: 19 go tool trace -pprof=TYPE trace.out > TYPE.pprof 52 Generate a pprof-like profile from the trace: 53 go tool trace -pprof=TYPE [pkg.test] trace.out 66 -pprof=type: print a pprof-like profile instead 71 pprofFlag = flag.String("pprof", "", "print a pprof-like profile instead" [all...] |
/prebuilts/go/darwin-x86/src/runtime/testdata/testprogcgo/ |
aprof.go | 19 "runtime/pprof" 47 pprof.StartCPUProfile(&buf) 50 pprof.StopCPUProfile()
|
pprof.go | 60 "runtime/pprof" 78 if err := pprof.StartCPUProfile(f); err != nil { 88 pprof.StopCPUProfile()
|
threadpprof.go | 76 "runtime/pprof" 102 if err := pprof.StartCPUProfile(f); err != nil { 114 pprof.StopCPUProfile()
|
/prebuilts/go/linux-x86/src/cmd/trace/ |
main.go | 10 - net/http/pprof package 18 Generate a pprof-like profile from the trace: 19 go tool trace -pprof=TYPE trace.out > TYPE.pprof 52 Generate a pprof-like profile from the trace: 53 go tool trace -pprof=TYPE [pkg.test] trace.out 66 -pprof=type: print a pprof-like profile instead 71 pprofFlag = flag.String("pprof", "", "print a pprof-like profile instead" [all...] |
/prebuilts/go/linux-x86/src/runtime/testdata/testprogcgo/ |
aprof.go | 19 "runtime/pprof" 47 pprof.StartCPUProfile(&buf) 50 pprof.StopCPUProfile()
|
pprof.go | 60 "runtime/pprof" 78 if err := pprof.StartCPUProfile(f); err != nil { 88 pprof.StopCPUProfile()
|
/prebuilts/go/darwin-x86/src/runtime/testdata/testprog/ |
memprof.go | 13 "runtime/pprof" 37 if err := pprof.WriteHeapProfile(f); err != nil {
|
/prebuilts/go/linux-x86/src/runtime/testdata/testprog/ |
memprof.go | 13 "runtime/pprof" 37 if err := pprof.WriteHeapProfile(f); err != nil {
|
/prebuilts/go/darwin-x86/src/cmd/pprof/ |
doc.go | 5 // Pprof interprets and displays profiles of Go programs. 9 // go tool pprof binary profile
|
/prebuilts/go/linux-x86/src/cmd/pprof/ |
doc.go | 5 // Pprof interprets and displays profiles of Go programs. 9 // go tool pprof binary profile
|
/prebuilts/go/darwin-x86/misc/cgo/testsanitizers/ |
tsan9.go | 48 "runtime/pprof" 63 pprof.StartCPUProfile(ioutil.Discard) 66 pprof.StopCPUProfile()
|
/prebuilts/go/darwin-x86/test/bench/garbage/ |
tree2.go | 13 "runtime/pprof" 84 pprof.StartCPUProfile(f) 85 defer pprof.StopCPUProfile()
|
/prebuilts/go/linux-x86/misc/cgo/testsanitizers/ |
tsan9.go | 48 "runtime/pprof" 63 pprof.StartCPUProfile(ioutil.Discard) 66 pprof.StopCPUProfile()
|