/aosp_15_r20/external/bcc/tools/ |
H A D | tcpconnect_example.txt | 1 Demonstrations of tcpconnect, the Linux eBPF/bcc version. 8 # ./tcpconnect 28 # ./tcpconnect -t 48 # ./tcpconnect -d 60 # ./tcpconnect -L 69 # ./tcpconnect -U 79 # ./tcpconnect -Uu 1000 87 # ./tcpconnect.py -c 100 # ./tcpconnect --cgroupmap /sys/fs/bpf/test01 107 # ./tcpconnect -h [all …]
|
H A D | tcpconnect.py | 4 # tcpconnect Trace TCP connect()s. 7 # USAGE: tcpconnect [-h] [-c] [-t] [-p PID] [-P PORT [PORT ...]] [-4 | -6] 36 ./tcpconnect # trace all TCP connect()s 37 ./tcpconnect -t # include timestamps 38 ./tcpconnect -d # include DNS queries associated with connects 39 ./tcpconnect -p 181 # only trace PID 181 40 ./tcpconnect -P 80 # only trace port 80 41 ./tcpconnect -P 80,81 # only trace port 80 and 81 42 ./tcpconnect -4 # only trace IPv4 family 43 ./tcpconnect -6 # only trace IPv6 family [all …]
|
/aosp_15_r20/external/bcc/man/man8/ |
H A D | tcpconnect.8 | 1 .TH tcpconnect 8 "2020-02-20" "USER COMMANDS" 3 tcpconnect \- Trace TCP active connections (connect()). Uses Linux eBPF/bcc. 5 .B tcpconnect [\-h] [\-c] [\-t] [\-p PID] [-P PORT] [\-4 | \-6] [\-L] [-u UID] [-U] [\-\-cgroupmap … 90 .B tcpconnect 94 .B tcpconnect \-t 98 .B tcpconnect \-d 102 .B tcpconnect \-p 181 106 .B tcpconnect \-P 80,81 110 .B tcpconnect -4 114 .B tcpconnect -6 [all …]
|
H A D | tcpdrop.8 | 91 tcplife(8), tcpaccept(8), tcpconnect(8), tcptop(8)
|
H A D | tcpretrans.8 | 111 tcpconnect(8), tcpaccept(8)
|
H A D | tcprtt.8 | 103 tcptracer(8), tcpconnect(8), funccount(8), tcpdump(8)
|
H A D | tcptracer.8 | 124 tcpaccept(8), tcpconnect(8), tcptop(8), tcplife(8)
|
H A D | tcpaccept.8 | 126 tcptracer(8), tcpconnect(8), funccount(8), tcpdump(8)
|
H A D | tcplife.8 | 144 tcpaccept(8), tcpconnect(8), tcptop(8)
|
H A D | tcpcong.8 | 136 tcpretrans(8), tcpconnect(8), tcptop(8), tcpdrop(8)
|
H A D | tcpconnlat.8 | 133 tcpconnect(8), tcpaccept(8), funccount(8), tcpdump(8)
|
H A D | tcpstates.8 | 145 tcpaccept(8), tcpconnect(8), tcptop(8), tcplife(8)
|
/aosp_15_r20/external/bcc/libbpf-tools/ |
H A D | tcpconnect.c | 4 // Based on tcpconnect(8) from BCC by Brendan Gregg 13 #include "tcpconnect.h" 14 #include "tcpconnect.skel.h" 23 const char *argp_program_version = "tcpconnect 0.1"; 30 " tcpconnect # trace all TCP connect()s\n" 31 " tcpconnect -t # include timestamps\n" 32 " tcpconnect -p 181 # only trace PID 181\n" 33 " tcpconnect -P 80 # only trace port 80\n" 34 " tcpconnect -P 80,81 # only trace port 80 and 81\n" 35 " tcpconnect -U # include UID\n" [all …]
|
H A D | Android.bp | 523 name: "tcpconnect.bpf.o", 524 srcs: ["tcpconnect.bpf.c"], 529 name: "tcpconnect.skel.h", 530 srcs: [":tcpconnect.bpf.o"], 531 out: ["tcpconnect.skel.h"], 536 name: "tcpconnect", 539 "tcpconnect.c", 541 generated_headers: ["tcpconnect.skel.h"],
|
H A D | tcpconnect.bpf.c | 4 // Based on tcpconnect(8) from BCC by Brendan Gregg 12 #include "tcpconnect.h"
|
H A D | .gitignore | 53 /tcpconnect
|
H A D | tcptracer.h | 5 // tcpconnect(8) by Anton Protopopov
|
/aosp_15_r20/external/bcc/tools/old/ |
H A D | tcpconnect.py | 4 # tcpconnect Trace TCP connect()s. 7 # USAGE: tcpconnect [-h] [-t] [-p PID] 22 ./tcpconnect # trace all TCP connect()s 23 ./tcpconnect -t # include timestamps 24 ./tcpconnect -p 181 # only trace PID 181
|
/aosp_15_r20/external/bcc/docs/ |
H A D | tutorial.md | 36 1. tcpconnect 178 #### 1.7. tcpconnect 181 # ./tcpconnect 191 tcpconnect prints one line of output for every active TCP connection (eg, via connect()), with deta…
|
/aosp_15_r20/external/bcc/debian/ |
H A D | changelog | 46 * libbpf tool updates for klockstat, opensnoop, tcpconnect, etc. 132 * add LPORT support in tcpconnlat and tcpconnect 161 * tcpconnect: add DNS correlation to connect tracking
|
/aosp_15_r20/external/bcc/snap/ |
H A D | snapcraft.yaml | 301 tcpconnect: 302 command: bcc-wrapper tcpconnect
|
/aosp_15_r20/external/grpc-grpc/test/cpp/end2end/ |
H A D | connection_attempt_injector.cc | 49 ConnectionAttemptInjector::TcpConnect, 58 int64_t ConnectionAttemptInjector::TcpConnect( in TcpConnect() function in grpc::testing::ConnectionAttemptInjector
|
/aosp_15_r20/packages/modules/DnsResolver/ |
D | DnsTlsSocket.cpp | 70 Status DnsTlsSocket::tcpConnect() { in tcpConnect() function in android::net::DnsTlsSocket 200 if (Status status = tcpConnect(); !status.ok()) { in startHandshake() 405 if (Status status = tcpConnect(); !status.ok()) { in loop()
|
/aosp_15_r20/external/bcc/ |
H A D | LINKS.md | 47 - 2015-10-31: [tcpconnect and tcpaccept for Linux (bcc)](http://www.brendangregg.com/blog/2015-10-3…
|
/aosp_15_r20/external/bcc/examples/tracing/ |
H A D | tcpv4connect_example.txt | 22 This is provided as a basic example of TCP tracing. See tools/tcpconnect for a
|