Home
last modified time | relevance | path

Searched full:offcputime (Results 1 – 22 of 22) sorted by relevance

/external/bcc/tools/
Doffcputime_example.txt1 Demonstrations of offcputime, the Linux eBPF/bcc version.
15 # ./offcputime -K
559 offcputime
603 # ./offcputime -K -p 26651
627 # ./offcputime -K -p 26651 5
662 # ./offcputime -K -f 5
707 offcputime;entry_SYSCALL_64_fastpath;sys_select;core_sys_select;do_select;poll_schedule_timeout;sch…
721 # ./offcputime.py -h
722 usage: offcputime.py [-h] [-p PID | -t TID | -u | -k] [-U | -K] [-d] [-f]
761 ./offcputime # trace off-CPU stack time until Ctrl-C
[all …]
Doffcputime.py3 # offcputime Summarize off-CPU time by stack trace
6 # USAGE: offcputime [-h] [-p PID | -u | -k] [-U | -K] [-f] [duration]
45 ./offcputime # trace off-CPU stack time until Ctrl-C
46 ./offcputime 5 # trace for 5 seconds only
47 ./offcputime -f 5 # 5 seconds, and output in folded format
48 ./offcputime -m 1000 # trace only events that last more than 1000 usec
49 ./offcputime -M 10000 # trace only events that last less than 10000 usec
50 ./offcputime -p 185 # only trace threads for PID 185
51 ./offcputime -t 188 # only trace thread 188
52 ./offcputime -u # only trace user threads (no kernel)
[all …]
Dprofile.py22 # of the code here, borrowed from tracepoint.py and offcputime.py; and
Dwakeuptime_example.txt13 This tool is intended to be used after offcputime, which shows the directly
/external/bcc/man/man8/
Doffcputime.81 .TH offcputime 8 "2016-01-14" "USER COMMANDS"
3 offcputime \- Summarize off-CPU time by kernel stack trace. Uses Linux eBPF/bcc.
5 .B offcputime [\-h] [\-p PID | \-t TID | \-u | \-k] [\-U | \-K] [\-d] [\-f] [\-\-stack\-storage\-si…
80 .B offcputime
84 .B offcputime 5
88 .B offcputime -f 5
92 .B offcputime -p 185
Dwakeuptime.821 This can be used in conjunction with offcputime, which shows the stack trace
104 offcputime(8), stackcount(8)
Doffwaketime.810 up. This combines the summaries from both the offcputime and wakeuptime tools.
115 offcputime(8), wakeuptime(8)
Dprofile.8156 offcputime(8)
/external/bcc/libbpf-tools/
Doffcputime.c4 // Based on offcputime(8) from BCC by Brendan Gregg.
14 #include "offcputime.h"
15 #include "offcputime.skel.h"
43 const char *argp_program_version = "offcputime 0.1";
49 "USAGE: offcputime [--help] [-p PID | -u | -k] [-m MIN-BLOCK-TIME] "
53 " offcputime # trace off-CPU stack time until Ctrl-C\n"
54 " offcputime 5 # trace for 5 seconds only\n"
55 " offcputime -m 1000 # trace only events that last more than 1000 usec\n"
56 " offcputime -M 10000 # trace only events that last less than 10000 usec\n"
57 " offcputime -p 185 # only trace threads for PID 185\n"
[all …]
DAndroid.bp369 name: "offcputime.bpf.o",
370 srcs: ["offcputime.bpf.c"],
375 name: "offcputime.skel.h",
376 srcs: [":offcputime.bpf.o"],
377 out: ["offcputime.skel.h"],
382 name: "offcputime",
384 "offcputime.c",
387 generated_headers: ["offcputime.skel.h"],
D.gitignore33 /offcputime
Doffcputime.bpf.c7 #include "offcputime.h"
DMakefile45 offcputime \
/external/bcc/tools/old/
Doffcputime.py3 # offcputime Summarize off-CPU time by kernel stack trace
6 # USAGE: offcputime [-h] [-u] [-p PID] [-v] [-f] [duration]
27 ./offcputime # trace off-CPU stack time until Ctrl-C
28 ./offcputime 5 # trace for 5 seconds only
29 ./offcputime -f 5 # 5 seconds, and output in folded format
30 ./offcputime -u # don't include kernel threads (user only)
31 ./offcputime -p 185 # trace fo PID 185 only
Dmemleak.py132 // Adapted from https://github.com/iovisor/bcc/tools/offcputime.py
Dprofile.py35 # much of the code here, borrowed from tracepoint.py and offcputime.py.
/external/bcc/tests/lua/
Dtest_standalone.sh26 PROBE="../../examples/lua/offcputime.lua"
/external/bcc/snap/
Dsnapcraft.yaml218 offcputime:
219 command: bcc-wrapper offcputime
/external/bcc/examples/lua/
Dtracepoint-offcputime.lua18 -- Related tool: https://github.com/iovisor/bcc/blob/master/tools/offcputime.py
Doffcputime.lua78 local parser = utils.argparse("offcputime", "Summarize off-cpu time")
/external/bcc/
DREADME.md137 - tools/[offcputime](tools/offcputime.py): Summarize off-CPU time by kernel stack trace. [Examples]…
/external/bcc/tests/python/
Dtest_tools_smoke.py264 self.run_with_duration("offcputime.py 1")