/aosp_15_r20/external/bcc/tools/ |
H A D | opensnoop_example.txt | 1 Demonstrations of opensnoop, the Linux eBPF/bcc version. 4 opensnoop traces the open() syscall system-wide, and prints various details. 7 # ./opensnoop 46 opensnoop can be useful for discovering configuration and log files, if used 53 ./opensnoop -Tp 1956 70 # ./opensnoop -U 80 # ./opensnoop -Uu 1000 91 # ./opensnoop -x 116 # ./opensnoop -d 2 127 # ./opensnoop -n ed [all …]
|
H A D | opensnoop.py | 4 # opensnoop Trace open() syscalls. 7 # USAGE: opensnoop [-h] [-T] [-U] [-x] [-p PID] [-t TID] 34 ./opensnoop # trace all open() syscalls 35 ./opensnoop -T # include timestamps 36 ./opensnoop -U # include UID 37 ./opensnoop -x # only show failed opens 38 ./opensnoop -p 181 # only trace PID 181 39 ./opensnoop -t 123 # only trace TID 123 40 ./opensnoop -u 1000 # only trace UID 1000 41 ./opensnoop -d 10 # trace for 10 seconds only [all …]
|
H A D | syscount_example.txt | 83 might be worth investigating with follow-up tools like opensnoop, execsnoop, 111 investigating with follow-up tools like opensnoop, execsnoop, or
|
H A D | statsnoop_example.txt | 53 to opensnoop, which shows what files were actually opened.
|
/aosp_15_r20/external/bcc/man/man8/ |
H A D | opensnoop.8 | 1 .TH opensnoop 8 "2020-02-20" "USER COMMANDS" 3 opensnoop \- Trace open() syscalls. Uses Linux eBPF/bcc. 5 .B opensnoop [\-h] [\-T] [\-U] [\-x] [\-p PID] [\-t TID] [\-u UID] 9 opensnoop traces the open() syscall, showing which processes are attempting 71 .B opensnoop 75 .B opensnoop -d 10 79 .B opensnoop \-T 83 .B opensnoop \-U 87 .B opensnoop \-x 91 .B opensnoop \-p 181 [all …]
|
H A D | shmsnoop.8 | 74 opensnoop(1)
|
H A D | bashreadline.8 | 61 opensnoop(8)
|
H A D | ttysnoop.8 | 66 opensnoop(1)
|
H A D | spfdsnoop.8 | 85 opensnoop(1)
|
H A D | filelife.8 | 72 opensnoop(1)
|
H A D | statsnoop.8 | 91 opensnoop(1)
|
H A D | killsnoop.8 | 97 opensnoop(8), funccount(8)
|
H A D | execsnoop.8 | 152 opensnoop(1)
|
/aosp_15_r20/external/bcc/libbpf-tools/ |
H A D | opensnoop.c | 5 // Based on opensnoop(8) from BCC by Brendan Gregg and others. 17 #include "opensnoop.h" 18 #include "opensnoop.skel.h" 60 const char *argp_program_version = "opensnoop 0.1"; 66 "USAGE: opensnoop [-h] [-T] [-U] [-x] [-p PID] [-t TID] [-u UID] [-d DURATION]\n" 74 " ./opensnoop # trace all open() syscalls\n" 75 " ./opensnoop -T # include timestamps\n" 76 " ./opensnoop -U # include UID\n" 77 " ./opensnoop -x # only show failed opens\n" 78 " ./opensnoop -p 181 # only trace PID 181\n" [all …]
|
H A D | .gitignore | 42 /opensnoop
|
H A D | opensnoop.bpf.c | 6 #include "opensnoop.h"
|
/aosp_15_r20/external/bcc/tools/old/ |
H A D | opensnoop.py | 4 # opensnoop Trace open() syscalls. 7 # USAGE: opensnoop [-h] [-t] [-x] [-p PID] 20 ./opensnoop # trace all open() syscalls 21 ./opensnoop -t # include timestamps 22 ./opensnoop -x # only show failed opens 23 ./opensnoop -p 181 # only trace PID 181
|
/aosp_15_r20/external/bcc/debian/ |
H A D | changelog | 34 …* bcc tool updates for biosnoop, opensnoop, biopattern, killsnoop, runqslower, offcputime, wakeupt… 35 …* libbpf-tools updates for klockstat, sigsnoop, hardirqs, softirqs, opensnoop, statsnoop, offcputi… 46 * libbpf tool updates for klockstat, opensnoop, tcpconnect, etc. 201 * support kfunc (faster kprobe) for vfsstat, klockstat and opensnoop 214 * cgroupmap based cgroup filtering for opensnoop, execsnoop and bindsnoop.
|
/aosp_15_r20/external/bcc/docs/ |
H A D | tutorial.md | 31 1. opensnoop 62 #### 1.2. opensnoop 65 # ./opensnoop 79 opensnoop prints one line of output for each open() syscall, including details. 81 …y, when they are constantly attempting to read files that do not exist. opensnoop gives you a quic…
|
H A D | special_filtering.md | 15 # ./opensnoop --cgroupmap /sys/fs/bpf/test01
|
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/fuchsia/bt_hci_virtual/ |
H A D | loopback_test.cc | 58 OpenSnoop(); in SetUp() 151 void OpenSnoop() { in OpenSnoop() function in bt_hci_virtual::LoopbackTest 156 snoop_vendor_client_->OpenSnoop().Then( in OpenSnoop() 157 [this](fidl::Result<fhb::Vendor::OpenSnoop>& result) { in OpenSnoop()
|
/aosp_15_r20/external/bcc/snap/ |
H A D | README.md | 27 Now run a bcc tool, for example, to run opensnoop use: 29 sudo bcc.opensnoop
|
H A D | snapcraft.yaml | 223 opensnoop: 224 command: bcc-wrapper opensnoop
|
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/fuchsia/host/fidl/public/pw_bluetooth_sapphire/fuchsia/host/fidl/ |
H A D | fake_vendor_server.h | 64 void OpenSnoop(OpenSnoopCompleter::Sync& completer) override { in OpenSnoop() function 65 BT_PANIC("OpenSnoop not supported"); in OpenSnoop()
|
/aosp_15_r20/external/bcc/ |
H A D | README.md | 141 - tools/[opensnoop](tools/opensnoop.py): Trace open() syscalls. [Examples](tools/opensnoop_example.…
|