/aosp_15_r20/external/bcc/tools/ |
H A D | funccount_example.txt | 1 Demonstrations of funccount, the Linux eBPF/bcc version. 8 # ./funccount 'vfs_*' 35 # ./funccount 'tcp_*' 172 # ./funccount -p 1442 /home/ubuntu/contentions:* 185 # ./funccount -p 1442 contentions:* 190 # ./funccount -r 'c:(write|read)$' 202 # ./funccount t:block:* 216 # ./funccount u:pthread:*mutex* -p 1442 229 # ./funccount -i 1 'vfs_*' 272 # ./funccount -i 1 -d 5 vfs_read [all …]
|
H A D | funccount.py | 4 # funccount Count functions, tracepoints, and USDT probes. 7 # USAGE: funccount [-h] [-p PID] [-i INTERVAL] [-d DURATION] [-T] [-r] 221 ./funccount 'vfs_*' # count kernel fns starting with "vfs" 222 ./funccount -r '^vfs.*' # same as above, using regular expressions 223 ./funccount -Ti 5 'vfs_*' # output every 5 seconds, with timestamps 224 ./funccount -d 10 'vfs_*' # trace for 10 seconds only 225 ./funccount -p 185 'vfs_*' # count vfs calls for PID 181 only 226 ./funccount t:sched:sched_fork # count calls to the sched_fork tracepoint 227 ./funccount -p 185 u:node:gc* # count all GC USDT probes in node, PID 185 228 ./funccount c:malloc # count all malloc() calls in libc [all …]
|
H A D | reset-trace_example.txt | 50 # ./funccount 'bash:r*' 105 I've traced 317 functions using funccount, and when I hit Ctrl-C, funccount is 113 10:00:34 PM 0 27980 87.25 10.78 0.00 98.04 3 funccount.py 118 10:00:35 PM 0 27980 77.00 23.00 0.00 100.00 3 funccount.py 122 funccount looks a lot like it's in an infinite loop (I can use a stack-sampling
|
/aosp_15_r20/external/bcc/man/man8/ |
H A D | funccount.8 | 1 .TH funccount 8 "2015-08-18" "USER COMMANDS" 3 funccount \- Count function, tracepoint, and USDT probe calls matching a pattern. Uses Linux eBPF/b… 5 .B funccount [\-h] [\-p PID] [\-i INTERVAL] [\-d DURATION] [\-T] [\-r] [\-c CPU] [\-D] pattern 48 .B funccount 'vfs_*' 52 .B funccount 'tcp_send*' 56 .B funccount \-i 1 'vfs_*' 60 .B funccount \-d 10 'vfs_*' 64 .B funccount \-r '^vfs_.*' 68 .B funccount \-p 181 'vfs_*' 72 .B funccount t:sched:sched_fork [all …]
|
H A D | fileslower.8 | 88 instrumented events using the bcc funccount tool, eg: 90 # ./funccount.py -i 1 -r '^__vfs_(read|write)$' 114 biosnoop(8), funccount(8)
|
H A D | funcslower.8 | 108 called (and estimate the overhead), use the funccount tool, e.g.: 110 # funccount c:open 125 funccount(8), funclatency(8), argdist(8), trace(8)
|
H A D | funcinterval.8 | 105 environment and understand overheads before use. You can also use funccount 123 funccount(8)
|
H A D | funclatency.8 | 122 environment and understand overheads before use. You can also use funccount 139 funccount(8)
|
H A D | stackcount.8 | 143 also use funccount to get a handle on function call rates first. 158 stacksnoop(8), funccount(8)
|
H A D | virtiostat.8 | 66 iostat(1), iftop(8), funccount(8)
|
H A D | killsnoop.8 | 97 opensnoop(8), funccount(8)
|
H A D | tcprtt.8 | 103 tcptracer(8), tcpconnect(8), funccount(8), tcpdump(8)
|
H A D | tcpaccept.8 | 126 tcptracer(8), tcpconnect(8), funccount(8), tcpdump(8)
|
H A D | syscount.8 | 119 funccount(8), ucalls(8), argdist(8), trace(8), funclatency(8)
|
H A D | xfsslower.8 | 113 biosnoop(8), funccount(8), fileslower(8)
|
H A D | ext4slower.8 | 113 biosnoop(8), funccount(8), fileslower(8)
|
H A D | tcpconnlat.8 | 133 tcpconnect(8), tcpaccept(8), funccount(8), tcpdump(8)
|
/aosp_15_r20/frameworks/rs/cpu_ref/ |
H A D | rsCpuExecutable.cpp | 424 size_t funcCount = 0; in createFromSharedObject() local 495 if (sscanf(line, EXPORT_FUNC_STR "%zu", &funcCount) != 1) { in createFromSharedObject() 500 invokeFunctions = new InvokeFunc_t[funcCount]; in createFromSharedObject() 505 for (size_t i = 0; i < funcCount; ++i) { in createFromSharedObject() 818 invokeFunctions, funcCount, in createFromSharedObject()
|
H A D | rsCpuExecutable.h | 81 InvokeFunc_t* invokeFunctions, size_t funcCount, in ScriptExecutable() argument 93 mInvokeFunctions(invokeFunctions), mFuncCount(funcCount), in ScriptExecutable()
|
/aosp_15_r20/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
H A D | FuncCount.java | 19 * $Id: FuncCount.java 468655 2006-10-28 07:12:06Z minchau $ 32 public class FuncCount extends FunctionOneArg class
|
/aosp_15_r20/external/bcc/snap/ |
H A D | snapcraft.yaml | 167 funccount: 168 command: bcc-wrapper funccount
|
/aosp_15_r20/external/bcc/docs/ |
H A D | tutorial.md | 315 1. funccount 416 #### 2.3. funccount
|
/aosp_15_r20/external/apache-xml/test/tests/conferr/positionerr/ |
H A D | positionerr04.xsl | 11 <!-- ExpectedException: FuncCount only allows 1 arguments -->
|
H A D | positionerr03.xsl | 11 <!-- ExpectedException: FuncCount only allows 1 arguments -->
|
/aosp_15_r20/external/bcc/examples/tracing/ |
H A D | stacksnoop_example.txt | 23 funccount.
|