/aosp_15_r20/external/bcc/tools/ |
H A D | stackcount_example.txt | 1 Demonstrations of stackcount, the Linux eBPF/bcc version. 9 # ./stackcount submit_bio 81 # ./stackcount -P submit_bio 166 # ./stackcount -P -d submit_bio 255 # ./stackcount.py -P -d hrtimer_init_sleeper 368 # ./stackcount.py -P -d ip_output 438 # ./stackcount.py -K ip_output 465 # ./stackcount.py -P -U ip_output 490 # ./stackcount -p 4902 c:malloc 511 Note that user-space uses of stackcount can be somewhat more limited because [all …]
|
H A D | stackcount.py | 3 # stackcount Count events and their stack traces. 6 # USAGE: stackcount.py [-h] [-p PID] [-c CPU] [-i INTERVAL] [-D DURATION] [-T] 209 ./stackcount submit_bio # count kernel stack traces for submit_bio 210 ./stackcount -d ip_output # include a user/kernel stack delimiter 211 ./stackcount -s ip_output # show symbol offsets 212 ./stackcount -sv ip_output # show offsets and raw addresses (verbose) 213 ./stackcount 'tcp_send*' # count stacks for funcs matching tcp_send* 214 ./stackcount -r '^tcp_send.*' # same as above, using regular expressions 215 ./stackcount -Ti 5 ip_output # output every 5 seconds, with timestamps 216 ./stackcount -p 185 ip_output # count ip_output stacks for PID 185 only [all …]
|
/aosp_15_r20/external/bcc/man/man8/ |
H A D | stackcount.8 | 1 .TH stackcount 8 "2016-01-14" "USER COMMANDS" 3 stackcount \- Count function calls and their stack traces. Uses Linux eBPF/bcc. 5 .B stackcount [\-h] [\-p PID] [\-c CPU] [\-i INTERVAL] [\-D DURATION] [\-T] 8 stackcount traces functions and frequency counts them with their entire 77 .B stackcount submit_bio 81 .B stackcount \-d submit_bio 85 .B stackcount \-K submit_bio 89 .B stackcount \-U submit_bio 93 .B stackcount ip_output 97 .B stackcount \-s ip_output [all …]
|
H A D | funccount.8 | 112 stackcount(8)
|
H A D | wakeuptime.8 | 104 offcputime(8), stackcount(8)
|
H A D | offcputime.8 | 118 stackcount(8)
|
/aosp_15_r20/external/bcc/tools/old/ |
H A D | stackcount.py | 3 # stackcount Count kernel function calls and their stack traces. 6 # USAGE: stackcount [-h] [-p PID] [-i INTERVAL] [-T] [-r] pattern 30 ./stackcount submit_bio # count kernel stack traces for submit_bio 31 ./stackcount ip_output # count kernel stack traces for ip_output 32 ./stackcount -s ip_output # show symbol offsets 33 ./stackcount -sv ip_output # show offsets and raw addresses (verbose) 34 ./stackcount 'tcp_send*' # count stacks for funcs matching tcp_send* 35 ./stackcount -r '^tcp_send.*' # same as above, using regular expressions 36 ./stackcount -Ti 5 ip_output # output every 5 seconds, with timestamps 37 ./stackcount -p 185 ip_output # count ip_output stacks for PID 185 only
|
/aosp_15_r20/prebuilts/go/linux-x86/src/net/http/ |
D | main_test.go | 65 var stackCount map[string]int 68 stackCount = make(map[string]int) 71 stackCount[g]++ 81 for stack, count := range stackCount {
|
/aosp_15_r20/cts/tests/framework/base/windowmanager/util/src/android/server/wm/ |
H A D | WindowManagerStateHelper.java | 481 final int stackCount = getRootTaskCount(); 482 if (stackCount == 0) { 483 logAlways("***stackCount=" + stackCount);
|
/aosp_15_r20/external/bcc/snap/ |
H A D | snapcraft.yaml | 281 stackcount: 282 command: bcc-wrapper stackcount
|
/aosp_15_r20/platform_testing/libraries/flicker/utils/src/android/tools/traces/wm/ |
H A D | WindowManagerState.kt | 165 val stackCount: Int in <lambda>() constant in android.tools.traces.wm.WindowManagerState 463 var incomplete = stackCount == 0 in <lambda>()
|
/aosp_15_r20/external/clang/test/Rewriter/ |
H A D | rewrite-foreach-3.m | 9 …e: (struct __objcFastEnumerationState *)state objects: (id *)items count:(unsigned int)stackcount
|
H A D | rewrite-foreach-2.m | 9 …e: (struct __objcFastEnumerationState *)state objects: (id *)items count:(unsigned int)stackcount
|
H A D | rewrite-foreach-1.m | 9 …e: (struct __objcFastEnumerationState *)state objects: (id *)items count:(unsigned int)stackcount
|
H A D | rewrite-foreach-4.m | 8 …e: (struct __objcFastEnumerationState *)state objects: (id *)items count:(unsigned int)stackcount
|
H A D | rewrite-foreach-5.m | 12 …e: (struct __objcFastEnumerationState *)state objects: (id *)items count:(unsigned int)stackcount
|
/aosp_15_r20/external/clang/test/Parser/ |
H A D | objc-foreach-syntax.m | 5 …e: (struct __objcFastEnumerationState *)state objects: (id *)items count:(unsigned int)stackcount
|
H A D | objc-forcollection-1.m | 15 …e: (struct __objcFastEnumerationState *)state objects: (id *)items count:(unsigned int)stackcount
|
H A D | objc-forcollection-neg-2.m | 15 …e: (struct __objcFastEnumerationState *)state objects: (id *)items count:(unsigned int)stackcount
|
H A D | objc-forcollection-neg.m | 14 …e: (struct __objcFastEnumerationState *)state objects: (id *)items count:(unsigned int)stackcount
|
/aosp_15_r20/external/bcc/examples/tracing/ |
H A D | stacksnoop_example.txt | 21 For high frequency functions, see stackcount, which summarizes in-kernel for
|
/aosp_15_r20/external/clang/test/SemaObjCXX/ |
H A D | instantiate-stmt.mm | 28 …: (struct __objcFastEnumerationState *)state objects: (id *)items count:(unsigned int)stackcount;
|
/aosp_15_r20/external/bcc/ |
H A D | README.md | 157 - tools/[stackcount](tools/stackcount.py): Count kernel function calls and their stack traces. [Exa…
|
/aosp_15_r20/external/bcc/tests/python/ |
H A D | test_tools_smoke.py | 324 self.run_with_int("stackcount.py __kmalloc -i 1")
|
/aosp_15_r20/platform_testing/libraries/flicker/src/android/tools/flicker/subject/wm/ |
H A D | WindowManagerStateSubject.kt | 407 check { "Stacks count" }.that(wmState.stackCount).isGreater(0) in <lambda>()
|