Home
last modified time | relevance | path

Searched refs:bcc (Results 1 – 25 of 487) sorted by relevance

12345678910>>...20

/external/bcc/src/lua/
Dsquishy1 Module "bcc.vendor.argparse" "bcc/vendor/argparse.lua"
2 Module "bcc.vendor.posix" "bcc/vendor/posix.lua"
3 Module "bcc.vendor.middleclass" "bcc/vendor/middleclass.lua"
4 Module "bcc.vendor.json" "bcc/vendor/json.lua"
5 Module "bcc.vendor.helpers" "bcc/vendor/helpers.lua"
7 Module "bcc.init" "bcc/init.lua"
8 Module "bcc.run" "bcc/run.lua"
9 Module "bcc.bpf" "bcc/bpf.lua"
10 Module "bcc.sym" "bcc/sym.lua"
11 Module "bcc.libbcc" "bcc/libbcc.lua"
[all …]
DCMakeLists.txt6 ${CMAKE_CURRENT_SOURCE_DIR}/bcc/*.lua
7 ${CMAKE_CURRENT_SOURCE_DIR}/bcc/vendor/*.lua
11 OUTPUT bcc.lua
17 OUTPUT bcc.o
18 COMMAND ${LUAJIT} -bg bcc.lua bcc.o
19 DEPENDS bcc.lua
23 add_executable(bcc-lua src/main.c bcc.o)
24 set_target_properties(bcc-lua PROPERTIES LINKER_LANGUAGE C)
25 target_link_libraries(bcc-lua ${LUAJIT_LIBRARIES})
26 target_link_libraries(bcc-lua ${bcc-lua-static})
[all …]
/external/bcc/SPECS/
Dbcc.spec32 %global python_bcc python3-bcc
36 %global python_bcc python2-bcc
44 Name: bcc
51 URL: https://github.com/iovisor/bcc
52 Source0: bcc.tar.gz
86 %setup -q -n bcc
104 find %{buildroot}/usr/share/bcc/{tools,examples} -type f -exec \
117 %package -n python2-bcc
120 %{?python_provide:%python_provide python2-bcc}
121 %description -n python2-bcc
[all …]
Dbcc+clang.spec5 Name: bcc
12 URL: https://github.com/iovisor/bcc
13 Source0: https://github.com/iovisor/bcc/archive/v%{version}.tar.gz
29 %setup -D -n bcc
71 %package -n python-bcc
74 %description -n python-bcc
77 %package -n bcc-tools
79 Requires: python-bcc
80 %description -n bcc-tools
83 %files -n python-bcc
[all …]
/external/bcc/
DLINKS.md3 - 2019-11-12: [bcc-tools brings dynamic kernel tracing to Red Hat Enterprise Linux 8.1](https://www…
12 - 2017-03-04: [Linux 4.x Tracing: Performance Analysis with bcc/BPF](https://www.slideshare.net/bre…
15 - 2017-01-31: [Golang bcc/BPF Function Tracing](http://www.brendangregg.com/blog/2017-01-31/golang-
19 - 2016-11-30: [Linux bcc/BPF tcplife: TCP Lifespans](http://www.brendangregg.com/blog/2016-11-30/li…
22 - 2016-10-15: [Linux bcc tcptop](http://www.brendangregg.com/blog/2016-10-15/linux-bcc-tcptop.html)
23 - 2016-10-12: [Linux bcc/BPF Node.js USDT Tracing](http://www.brendangregg.com/blog/2016-10-12/linu…
24 - 2016-10-08: [Linux bcc/BPF Run Queue (Scheduler) Latency](http://www.brendangregg.com/blog/2016-1…
25 - 2016-10-06: [Linux bcc ext4 Latency Tracing](http://www.brendangregg.com/blog/2016-10-06/linux-bc…
26 - 2016-10-04: [Installing bcc to evaluate BPF and Postgres](http://blog.gregburek.com/2016/10/04/in…
27 …-10-04: [Linux MySQL Slow Query Tracing with bcc/BPF](http://www.brendangregg.com/blog/2016-10-04/…
[all …]
DINSTALL.md52 There are a few optional kernel flags needed for running bcc networking examples on vanilla kernel:
69 `bcc` and its tools are available in the standard Debian main repository, from the source package […
73 Versions of bcc are available in the standard Ubuntu
75 packages use `bcc` in the name (e.g. `bcc-tools`), Ubuntu packages use `bpfcc` (e.g.
80 - [iovisor - BCC GitHub Issues](https://github.com/iovisor/bcc/issues/2678)
81 …from source](#ubuntu---source) is currently the only way to get up to date packaged version of bcc.
110 sudo apt-get install bcc-tools libbcc-examples linux-headers-$(uname -r)
112 …ial` with `artful` or `bionic` as appropriate). Tools will be installed under /usr/share/bcc/tools.
119 sudo apt-get install bcc-tools libbcc-examples linux-headers-$(uname -r)
127 As of Fedora 30, bcc binaries are available in the standard repository.
[all …]
DQUICKSTART.md3 A Docker container is provided for user to try out [bcc](https://github.com/iovisor/bcc).
12 --workdir /usr/share/bcc/tools \
13 zlim/bcc
16 Now, from the container shell, you can try the various pre-installed bcc tools.
20 If you wish to install bcc on your host, please refer to [INSTALL.md](INSTALL.md).
DFAQ.txt14 ImportError: No module named bcc
17 export PYTHONPATH=$(dirname `find /usr/lib -name bcc`):$PYTHONPATH
31 Also see https://github.com/iovisor/bcc/issues/2525
58 Q: Running one of the bcc tools produces an import error:
61 from bcc import BPF
62 ImportError: No module named bcc
63 A: Make sure the python bcc bindings package (python2-bcc) is installed.
/external/open-dice/src/android/
Dbcc_test.cc56 const uint8_t bcc[] = { in TEST() local
76 BccMainFlow(/*context=*/NULL, fake_cdi_attest, fake_cdi_seal, bcc, in TEST()
77 sizeof(bcc), &input_values, sizeof(next_bcc), next_bcc, in TEST()
80 EXPECT_GT(next_bcc_size, sizeof(bcc)); in TEST()
82 EXPECT_NE(0, memcmp(next_bcc + 1, bcc + 1, sizeof(bcc) - 1)); in TEST()
83 EXPECT_EQ(0, memcmp(next_bcc + 1, bcc + 1, sizeof(bcc) - 8 - 1)); in TEST()
186 const uint8_t *bcc; in TEST() local
189 &cdi_attest, &cdi_seal, &bcc, &bcc_size); in TEST()
193 EXPECT_EQ(bcc_handover + 72, bcc); in TEST()
212 const uint8_t *bcc; in TEST() local
[all …]
/external/bcc/src/cc/
DCMakeLists.txt85 add_library(bcc-shared SHARED
88 set_target_properties(bcc-shared PROPERTIES VERSION ${REVISION_LAST} SOVERSION 0)
89 set_target_properties(bcc-shared PROPERTIES OUTPUT_NAME bcc)
97 add_library(bcc-loader-static STATIC ${bcc_sym_sources} ${bcc_util_sources})
98 target_link_libraries(bcc-loader-static elf z)
99 add_library(bcc-static STATIC
101 set_target_properties(bcc-static PROPERTIES OUTPUT_NAME bcc)
102 set(bcc-lua-static
164 target_link_libraries(bcc-shared ${bcc_common_libs_for_s})
165 target_link_libraries(bcc-static ${bcc_common_libs_for_a} bcc-loader-static)
[all …]
/external/bcc/scripts/
Dbuild-release-rpm.sh22 git archive HEAD --prefix=bcc/ --format=tar -o $TMP/SOURCES/bcc.tar
26 git archive HEAD --prefix=bcc/src/cc/libbpf/ --format=tar -o $TMP/SOURCES/bcc_libbpf.tar
31 tar -A -f bcc.tar bcc_libbpf.tar
32 gzip -c bcc.tar > $git_tag_latest.tar.gz
40 SPECS/bcc+clang.spec > $TMP/SPECS/bcc.spec
43 rpmbuild --define "_topdir `pwd`" -ba SPECS/bcc.spec
Dbuild-rpm.sh33 git archive HEAD --prefix=bcc/ --format=tar -o $TMP/SOURCES/bcc.tar
37 git archive HEAD --prefix=bcc/src/cc/libbpf/ --format=tar -o $TMP/SOURCES/bcc_libbpf.tar
42 tar -A -f bcc.tar bcc_libbpf.tar
43 gzip bcc.tar
49 SPECS/bcc.spec > $TMP/SPECS/bcc.spec
52 rpmbuild $RPM_WITH_OPTS --define "_topdir `pwd`" -ba SPECS/bcc.spec
Dbuild-deb.sh.in14 mkdir $TMP/bcc
15 cp -a * $TMP/bcc
17 tar zcf bcc_@REVISION_LAST@.orig.tar.gz bcc/
18 cd bcc
/external/bcc/debian/
Dchangelog1 bcc (0.24.0-1) unstable; urgency=low
4 * bcc tools: update for trace.py, sslsniff.py, tcptop.py, hardirqs.py, etc.
15 bcc (0.23.0-1) unstable; urgency=low
18 * bcc tools: update for kvmexit.py, tcpv4connect.py, cachetop.py, cachestat.py, etc.
27 bcc (0.22.0-1) unstable; urgency=low
33 * new options for bcc tools runqslower, argdist
39 bcc (0.21.0-1) unstable; urgency=low
54 bcc (0.20.0-1) unstable; urgency=low
68 bcc (0.19.0-1) unstable; urgency=low
82 bcc (0.18.0-1) unstable; urgency=low
[all …]
Dcontrol1 Source: bcc
16 Homepage: https://github.com/iovisor/bcc
33 Package: python-bcc
40 Package: python3-bcc
47 Package: bcc-tools
51 Depends: python-bcc (= ${binary:Version})
54 Package: bcc-lua
/external/bcc/snap/
DREADME.md1 # bcc snap
10 Clone the bcc repo (if you haven't done so already) and create the snap:
12 git clone https://github.com/iovisor/bcc.git
23 sudo snap connect bcc:mount-observe
24 sudo snap connect bcc:system-observe
25 sudo snap connect bcc:system-trace
27 Now run a bcc tool, for example, to run opensnoop use:
29 sudo bcc.opensnoop
39 bcc snap.
/external/bcc/cmake/
Dbump_version.cmake7 configure_file(SPECS/bcc.el6.spec.in SPECS/bcc.el6.spec @ONLY)
8 configure_file(SPECS/bcc.el7.spec.in SPECS/bcc.el7.spec @ONLY)
9 configure_file(SPECS/bcc.f22.spec.in SPECS/bcc.f22.spec @ONLY)
/external/bcc/tools/
DCMakeLists.txt8 install(PROGRAMS ${FIL} DESTINATION share/bcc/tools RENAME ${FIL_WE})
13 install(PROGRAMS ${FIL} DESTINATION share/bcc/tools RENAME ${FIL_WE})
19 install(PROGRAMS ${FIL} DESTINATION share/bcc/tools RENAME ${FIL_WE})
20 …install(CODE "file(WRITE \"\$ENV{DESTDIR}/\${CMAKE_INSTALL_PREFIX}/share/bcc/tools/${FIL_WE}\" \"$…
23 install(FILES ${C_FILES} DESTINATION share/bcc/tools)
24 install(FILES ${TXT_FILES} DESTINATION share/bcc/tools/doc)
/external/bcc/docs/
Dreference_guide.md1 # bcc Reference Guide
5 This guide is incomplete. If something feels missing, check the bcc and kernel source. And if you c…
86 - [bcc Python](#bcc-python)
144 This section describes the C part of a bcc program.
172 …com/iovisor/bcc/blob/4afa96a71c5dbfc4c507c3355e20baa6c184a3a8/examples/tracing/tcpv4connect.py#L28…
173 …/iovisor/bcc/commit/310ab53710cfd46095c1f6b3e44f1dbc8d1a41d8#diff-8cd1822359ffee26e7469f991ce0ef00…
197 …com/iovisor/bcc/blob/4afa96a71c5dbfc4c507c3355e20baa6c184a3a8/examples/tracing/tcpv4connect.py#L38…
229 ….com/iovisor/bcc/blob/a4159da8c4ea8a05a3c6e402451f530d6e5a8b41/examples/tracing/urandomread.py#L19…
230 [search /examples](https://github.com/iovisor/bcc/search?q=TRACEPOINT_PROBE+path%3Aexamples&type=Co…
231 [search /tools](https://github.com/iovisor/bcc/search?q=TRACEPOINT_PROBE+path%3Atools&type=Code)
[all …]
/external/bcc/docker/
DDockerfile.ubuntu13 COPY ./ /root/bcc
15 WORKDIR /root/bcc
22 COPY --from=builder /root/bcc/*.deb /root/bcc/
32 dpkg -i /root/bcc/*.deb
/external/pdfium/testing/resources/javascript/
Dapp_methods_expected.txt41 Mail Msg: 1, to=, cc=, bcc=, subject=, body=
43 Mail Msg: 0, to=user@example.com, cc=, bcc=, subject=, body=
45 Mail Msg: 0, to=user@example.com, cc=cc@example.com, bcc=bcc@example.com, subject=subject, body=body
46 Alert: PASS: app.mailMsg(false, 'user@example.com', 'cc@example.com', 'bcc@example.com', 'subject',…
47 Mail Msg: 1, to=, cc=, bcc=, subject=, body=
49 Mail Msg: 0, to=user@example.com, cc=, bcc=, subject=, body=
51 Mail Msg: 0, to=user@example.com, cc=cc@example.com, bcc=bcc@example.com, subject=subject, body=body
52 …'bUI': false, 'cTo': 'user@example.com', 'cCc': 'cc@example.com', 'cBcc': 'bcc@example.com', 'cSub…
Ddocument_methods_expected.txt116 Mail Msg: 1, to=, cc=, bcc=, subject=, body=
118 Mail Msg: 0, to=user@example.com, cc=cc@example.com, bcc=bcc@example.com, subject=Lottery Winner, b…
119 Alert: PASS: this.mailDoc(false, "user@example.com", "cc@example.com", "bcc@example.com", "Lottery …
120 Mail Msg: 1, to=, cc=, bcc=, subject=, body=
122 Mail Msg: 0, to=user@example.com, cc=cc@example.com, bcc=bcc@example.com, subject=LotteryWinner, bo…
123 …"bUI": false, "cTo": "user@example.com", "cCc": "cc@example.com", "cBcc": "bcc@example.com", "cSub…
125 Mail Msg: 1, to=, cc=, bcc=, subject=, body=
127 Mail Msg: 0, to=user@example.com, cc=cc@example.com, bcc=bcc@example.com, subject=Lottery Winner, b…
128 Alert: PASS: this.mailForm(false, "user@example.com", "cc@example.com", "bcc@example.com", "Lottery…
129 Mail Msg: 1, to=, cc=, bcc=, subject=, body=
[all …]
/external/bcc/tests/python/
Dtest_perf_event.py5 import bcc
43 b = bcc.BPF(text=text, debug=0,
50 cnt1.open_perf_event(bcc.PerfType.HARDWARE, bcc.PerfHWConfig.CPU_CYCLES)
/external/bcc/examples/cpp/pyperf/
DCMakeLists.txt9 target_link_libraries(PyPerf bcc-static)
11 target_link_libraries(PyPerf bcc-static)
13 target_link_libraries(PyPerf bcc-shared)
17 install (TARGETS PyPerf DESTINATION share/bcc/examples/cpp)
/external/tcpdump/
Dprint-smb.c172 u_int bcc; in print_trans2() local
223 bcc = GET_LE_U_2(dat); in print_trans2()
224 ND_PRINT("smb_bcc=%u\n", bcc); in print_trans2()
330 u_int bcc; in print_trans() local
362 bcc = GET_LE_U_2(data1); in print_trans()
363 ND_PRINT("smb_bcc=%u\n", bcc); in print_trans()
364 if (bcc > 0) { in print_trans()
398 u_int wct, bcc; in print_negprot() local
419 bcc = GET_LE_U_2(data); in print_negprot()
420 ND_PRINT("smb_bcc=%u\n", bcc); in print_negprot()
[all …]

12345678910>>...20