Home
last modified time | relevance | path

Searched full:funclatency (Results 1 – 18 of 18) sorted by relevance

/external/bcc/man/man8/
Dfunclatency.81 .TH funclatency 8 "2015-08-18" "USER COMMANDS"
3 funclatency \- Time functions and print latency as a histogram.
5 .B funclatency [\-h] [\-p PID] [\-i INTERVAL] [\-d DURATION] [\-T] [\-u] [\-m] [\-F] [\-r] [\-v] pa…
67 .B funclatency do_sys_open
71 .B funclatency c:read
75 .B funclatency \-u vfs_read
79 .B funclatency \-m do_nanosleep
83 .B funclatency \-i 2 -d 10 c:read
87 .B funclatency \-mTi 5 vfs_read
91 .B funclatency \-p 181 vfs_read:
[all …]
Dfuncinterval.810 By funclatency, we can profile specific functions to know how latency
122 funclatency(8)
Dfuncslower.8105 You should first use the funclatency and argdist tools for investigation,
125 funccount(8), funclatency(8), argdist(8), trace(8)
Dsyscount.8110 funccount(8), ucalls(8), argdist(8), trace(8), funclatency(8)
Dfunccount.8113 funclatency(8)
/external/bcc/tools/
Dfunclatency_example.txt1 Demonstrations of funclatency, the Linux eBPF/bcc version.
6 # ./funclatency do_sys_open
56 # ./funclatency pthread:pthread_mutex_lock -p $(pidof contentions)
91 # ./funclatency /home/user/primes:* -p $(pidof primes) -F
153 # ./funclatency -u vfs_read
190 # ./funclatency -m do_nanosleep
223 # ./funclatency -mTi 5 vfs_read
297 # ./funclatency -mp 17064 vfs_read
320 # ./funclatency -uF 'vfs_r*'
364 # ./funclatency -h
[all …]
Dfunclatency.py4 # funclatency Time functions and print latency as a histogram.
7 # USAGE: funclatency [-h] [-p PID] [-i INTERVAL] [-T] [-u] [-m] [-F] [-r] [-v]
10 # Run "funclatency -h" for full usage.
34 ./funclatency do_sys_open # time the do_sys_open() kernel function
35 ./funclatency c:read # time the read() C library function
36 ./funclatency -u vfs_read # time vfs_read(), in microseconds
37 ./funclatency -m do_nanosleep # time do_nanosleep(), in milliseconds
38 ./funclatency -i 2 -d 10 c:open # output every 2 seconds, for duration 10s
39 ./funclatency -mTi 5 vfs_read # output every 5 seconds, with timestamps
40 ./funclatency -p 181 vfs_read # time process 181 only
[all …]
Dfuncinterval.py14 # 03-Jun-2020 Edward Wu Referenced funclatency and created this.
Dfuncinterval_example.txt4 By funclatency, we can profile specific functions to know how latency
/external/bcc/libbpf-tools/
Dfunclatency.c4 * Based on funclatency from BCC by Brendan Gregg and others
22 #include "funclatency.h"
23 #include "funclatency.skel.h"
44 const char *argp_program_version = "funclatency 0.1";
51 "Usage: funclatency [-h] [-m|-u] [-p PID] [-d DURATION] [ -i INTERVAL ]\n"
59 " ./funclatency do_sys_open # time the do_sys_open() kernel function\n"
60 " ./funclatency -m do_nanosleep # time do_nanosleep(), in milliseconds\n"
61 " ./funclatency -u vfs_read # time vfs_read(), in microseconds\n"
62 " ./funclatency -p 181 vfs_read # time process 181 only\n"
63 " ./funclatency -p 181 c:read # time the read() C library function\n"
[all …]
DAndroid.bp283 name: "funclatency.bpf.o",
284 srcs: ["funclatency.bpf.c"],
289 name: "funclatency.skel.h",
290 srcs: [":funclatency.bpf.o"],
291 out: ["funclatency.skel.h"],
296 name: "funclatency",
298 "funclatency.c",
301 generated_headers: ["funclatency.skel.h"],
D.gitignore23 /funclatency
Dfunclatency.bpf.c7 #include "funclatency.h"
DMakefile37 funclatency \
/external/bcc/snap/
Dsnapcraft.yaml172 funclatency:
173 command: bcc-wrapper funclatency
/external/bcc/debian/
Dchangelog59 * tools/funclatency.py support nested or recursive functions
75 * new libbpf-tools: cpufreq, funclatency, cachestat
/external/bcc/
DREADME.md121 - tools/[funclatency](tools/funclatency.py): Time functions and show their latency distribution. [E…
/external/bcc/tests/python/
Dtest_tools_smoke.py196 self.run_with_int("funclatency.py __kmalloc -i 1")