Home
last modified time | relevance | path

Searched full:funccount (Results 1 – 25 of 74) sorted by relevance

123

/aosp_15_r20/external/bcc/tools/
H A Dfunccount_example.txt1 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 Dfunccount.py4 # 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 Dreset-trace_example.txt50 # ./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 Dfunccount.81 .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 Dfileslower.888 instrumented events using the bcc funccount tool, eg:
90 # ./funccount.py -i 1 -r '^__vfs_(read|write)$'
114 biosnoop(8), funccount(8)
H A Dfuncslower.8108 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 Dfuncinterval.8105 environment and understand overheads before use. You can also use funccount
123 funccount(8)
H A Dfunclatency.8122 environment and understand overheads before use. You can also use funccount
139 funccount(8)
H A Dstackcount.8143 also use funccount to get a handle on function call rates first.
158 stacksnoop(8), funccount(8)
H A Dvirtiostat.866 iostat(1), iftop(8), funccount(8)
H A Dkillsnoop.897 opensnoop(8), funccount(8)
H A Dtcprtt.8103 tcptracer(8), tcpconnect(8), funccount(8), tcpdump(8)
H A Dtcpaccept.8126 tcptracer(8), tcpconnect(8), funccount(8), tcpdump(8)
H A Dsyscount.8119 funccount(8), ucalls(8), argdist(8), trace(8), funclatency(8)
H A Dxfsslower.8113 biosnoop(8), funccount(8), fileslower(8)
H A Dext4slower.8113 biosnoop(8), funccount(8), fileslower(8)
H A Dtcpconnlat.8133 tcpconnect(8), tcpaccept(8), funccount(8), tcpdump(8)
/aosp_15_r20/frameworks/rs/cpu_ref/
H A DrsCpuExecutable.cpp424 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 DrsCpuExecutable.h81 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 DFuncCount.java19 * $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 Dsnapcraft.yaml167 funccount:
168 command: bcc-wrapper funccount
/aosp_15_r20/external/bcc/docs/
H A Dtutorial.md315 1. funccount
416 #### 2.3. funccount
/aosp_15_r20/external/apache-xml/test/tests/conferr/positionerr/
H A Dpositionerr04.xsl11 <!-- ExpectedException: FuncCount only allows 1 arguments -->
H A Dpositionerr03.xsl11 <!-- ExpectedException: FuncCount only allows 1 arguments -->
/aosp_15_r20/external/bcc/examples/tracing/
H A Dstacksnoop_example.txt23 funccount.

123