Searched full:offcputime (Results  1 – 22 of 22) sorted by relevance
| /external/bcc/tools/ | 
| D | offcputime_example.txt | 1 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 …]
 
 | 
| D | offcputime.py | 3 # offcputime    Summarize off-CPU time by stack trace6 # 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 …]
 
 | 
| D | profile.py | 22 # of the code here, borrowed from tracepoint.py and offcputime.py; and
 | 
| D | wakeuptime_example.txt | 13 This tool is intended to be used after offcputime, which shows the directly
 | 
| /external/bcc/man/man8/ | 
| D | offcputime.8 | 1 .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
 
 | 
| D | wakeuptime.8 | 21 This can be used in conjunction with offcputime, which shows the stack trace104 offcputime(8), stackcount(8)
 
 | 
| D | offwaketime.8 | 10 up.  This combines the summaries from both the offcputime and wakeuptime tools.115 offcputime(8), wakeuptime(8)
 
 | 
| D | profile.8 | 156 offcputime(8)
 | 
| /external/bcc/libbpf-tools/ | 
| D | offcputime.c | 4 // 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 …]
 
 | 
| D | Android.bp | 369     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 | .gitignore | 33 /offcputime
 | 
| D | offcputime.bpf.c | 7 #include "offcputime.h"
 | 
| D | Makefile | 45 	offcputime \
 | 
| /external/bcc/tools/old/ | 
| D | offcputime.py | 3 # offcputime    Summarize off-CPU time by kernel stack trace6 # 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
 
 | 
| D | memleak.py | 132 // Adapted from https://github.com/iovisor/bcc/tools/offcputime.py
 | 
| D | profile.py | 35 # much of the code here, borrowed from tracepoint.py and offcputime.py.
 | 
| /external/bcc/tests/lua/ | 
| D | test_standalone.sh | 26 PROBE="../../examples/lua/offcputime.lua"
 | 
| /external/bcc/snap/ | 
| D | snapcraft.yaml | 218     offcputime:219         command: bcc-wrapper offcputime
 
 | 
| /external/bcc/examples/lua/ | 
| D | tracepoint-offcputime.lua | 18 -- Related tool: https://github.com/iovisor/bcc/blob/master/tools/offcputime.py
 | 
| D | offcputime.lua | 78   local parser = utils.argparse("offcputime", "Summarize off-cpu time")
 | 
| /external/bcc/ | 
| D | README.md | 137 - tools/[offcputime](tools/offcputime.py): Summarize off-CPU time by kernel stack trace. [Examples]…
 | 
| /external/bcc/tests/python/ | 
| D | test_tools_smoke.py | 264         self.run_with_duration("offcputime.py 1")
 |