Home
last modified time | relevance | path

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

12345678910>>...17

/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.spec25 %global python_bcc python3-bcc
29 %global python_bcc python2-bcc
35 Name: bcc
42 URL: https://github.com/iovisor/bcc
43 Source0: bcc.tar.gz
74 %setup -q -n bcc
92 find %{buildroot}/usr/share/bcc/{tools,examples} -type f -exec \
102 %package -n python2-bcc
105 %{?python_provide:%python_provide python2-bcc}
106 %description -n python2-bcc
[all …]
Dbcc+clang.spec4 Name: bcc
11 URL: https://github.com/iovisor/bcc
12 Source0: https://github.com/iovisor/bcc/archive/v%{version}.tar.gz
28 %setup -D -n bcc
70 %package -n python-bcc
73 %description -n python-bcc
76 %package -n bcc-tools
78 Requires: python-bcc
79 %description -n bcc-tools
82 %files -n python-bcc
[all …]
/external/bcc/examples/cpp/
DCMakeLists.txt10 target_link_libraries(HelloWorld bcc-static)
13 target_link_libraries(CPUDistribution bcc-static)
16 target_link_libraries(RecordMySQLQuery bcc-static)
19 target_link_libraries(TCPSendStack bcc-static)
22 target_link_libraries(RandomRead bcc-static)
25 target_link_libraries(LLCStat bcc-static)
28 target_link_libraries(FollyRequestContextSwitch bcc-static)
31 target_link_libraries(UseExternalMap bcc-static)
34 install (TARGETS HelloWorld DESTINATION share/bcc/examples/cpp)
35 install (TARGETS CPUDistribution DESTINATION share/bcc/examples/cpp)
[all …]
/external/bcc/
DLINKS.md9 - 2017-03-04: [Linux 4.x Tracing: Performance Analysis with bcc/BPF](https://www.slideshare.net/bre…
12 - 2017-01-31: [Golang bcc/BPF Function Tracing](http://www.brendangregg.com/blog/2017-01-31/golang-
16 - 2016-11-30: [Linux bcc/BPF tcplife: TCP Lifespans](http://www.brendangregg.com/blog/2016-11-30/li…
19 - 2016-10-15: [Linux bcc tcptop](http://www.brendangregg.com/blog/2016-10-15/linux-bcc-tcptop.html)
20 - 2016-10-12: [Linux bcc/BPF Node.js USDT Tracing](http://www.brendangregg.com/blog/2016-10-12/linu…
21 - 2016-10-08: [Linux bcc/BPF Run Queue (Scheduler) Latency](http://www.brendangregg.com/blog/2016-1…
22 - 2016-10-06: [Linux bcc ext4 Latency Tracing](http://www.brendangregg.com/blog/2016-10-06/linux-bc…
23 - 2016-10-04: [Installing bcc to evaluate BPF and Postgres](http://blog.gregburek.com/2016/10/04/in…
24 …-10-04: [Linux MySQL Slow Query Tracing with bcc/BPF](http://www.brendangregg.com/blog/2016-10-04/…
25 - 2016-10-01: [Linux bcc Tracing Security Capabilities](http://www.brendangregg.com/blog/2016-10-01…
[all …]
DINSTALL.md38 There are a few optional kernel flags needed for running bcc networking examples on vanilla kernel:
63 sudo apt-get install bcc-tools libbcc-examples linux-headers-$(uname -r)
72 sudo apt-get install bcc-tools libbcc-examples linux-headers-$(uname -r)
89 Nightly bcc binary packages for Fedora 25, 26, 27, and 28 are hosted at
95 sudo dnf install bcc-tools kernel-headers kernel-devel
100 Stable bcc binary packages for Fedora 25, 26, 27, and 28 are hosted at
105 sudo dnf install bcc-tools kernel-devel-$(uname -r) kernel-headers-$(uname -r)
114 bcc bcc-tools python-bcc python2-bcc
116 …d [in the PKGBUILD](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=bcc) and should install…
133 Finally, you can install bcc with:
[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).
/external/bcc/src/cc/
DCMakeLists.txt44 add_library(bcc-shared SHARED
47 set_target_properties(bcc-shared PROPERTIES VERSION ${REVISION_LAST} SOVERSION 0)
48 set_target_properties(bcc-shared PROPERTIES OUTPUT_NAME bcc)
55 add_library(bcc-loader-static STATIC ${bcc_sym_sources} ${bcc_util_sources})
56 target_link_libraries(bcc-loader-static elf)
57 add_library(bcc-static STATIC
59 set_target_properties(bcc-static PROPERTIES OUTPUT_NAME bcc)
60 set(bcc-lua-static
94 target_link_libraries(bcc-shared ${bcc_common_libs_for_s})
95 target_link_libraries(bcc-static ${bcc_common_libs_for_a} bcc-loader-static)
[all …]
/external/bcc/snapcraft/
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
16 Note: running `make` just gets the version from the current bcc gito
17 repository and uses this in the snapcraft yaml file to version the bcc
18 snap. The Makefile basically runs snapcraft to snap up bcc.
26 sudo snap connect bcc:mount-observe
27 sudo snap connect bcc:system-observe
28 sudo snap connect bcc:system-trace
30 Now run a bcc tool, for example, to run opensnoop use:
[all …]
DMakefile44 sudo snap connect bcc:mount-observe
45 sudo snap connect bcc:system-observe
46 sudo snap connect bcc:system-trace
49 sudo snap remove bcc
/external/pdfium/testing/resources/javascript/
Dapp_mailmsg_expected.txt2 Mail Msg: 1, to=, cc=, bcc=, subject=, body=
3 Mail Msg: 0, to=user@example.com, cc=, bcc=, subject=, body=
4 Mail Msg: 0, to=user@example.com, cc=cc@example.com, bcc=bcc@example.com, subject=subject, body=body
5 Mail Msg: 1, to=, cc=, bcc=, subject=, body=
6 Mail Msg: 0, to=user@example.com, cc=, bcc=, subject=, body=
7 Mail Msg: 0, to=user@example.com, cc=cc@example.com, bcc=bcc@example.com, subject=subject, body=body
/external/bcc/debian/
Dchangelog1 bcc (0.7.0-1) unstable; urgency=low
7 bcc (0.6.1-1) unstable; urgency=low
15 bcc (0.6.0-1) unstable; urgency=low
24 bcc (0.5.0-1) unstable; urgency=low
33 bcc (0.4.0-1) unstable; urgency=low
40 bcc (0.3.0-1) unstable; urgency=low
53 bcc (0.2.0-1) unstable; urgency=low
63 bcc (0.1.8-1) unstable; urgency=low
74 bcc (0.1.7-1) unstable; urgency=low
81 bcc (0.1.6-1) unstable; urgency=low
[all …]
Dcontrol1 Source: bcc
15 Homepage: https://github.com/iovisor/bcc
29 Package: python-bcc
34 Package: python3-bcc
39 Package: bcc-tools
41 Depends: python-bcc (= ${binary:Version})
44 Package: bcc-lua
Dbcc-tools.install1 usr/share/bcc/introspection/*
2 usr/share/bcc/tools/*
3 usr/share/bcc/man/*
/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…
58 - [bcc Python](#bcc-python)
99 This section describes the C part of a bcc program.
127 …com/iovisor/bcc/blob/4afa96a71c5dbfc4c507c3355e20baa6c184a3a8/examples/tracing/tcpv4connect.py#L28…
128 …/iovisor/bcc/commit/310ab53710cfd46095c1f6b3e44f1dbc8d1a41d8#diff-8cd1822359ffee26e7469f991ce0ef00…
152 …com/iovisor/bcc/blob/4afa96a71c5dbfc4c507c3355e20baa6c184a3a8/examples/tracing/tcpv4connect.py#L38…
177 ….com/iovisor/bcc/blob/a4159da8c4ea8a05a3c6e402451f530d6e5a8b41/examples/tracing/urandomread.py#L19…
178 [search /examples](https://github.com/iovisor/bcc/search?q=TRACEPOINT_PROBE+path%3Aexamples&type=Co…
179 [search /tools](https://github.com/iovisor/bcc/search?q=TRACEPOINT_PROBE+path%3Atools&type=Code)
[all …]
/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/scripts/
Dbuild-rpm.sh19 git archive HEAD --prefix=bcc/ --format=tar.gz -o $TMP/SOURCES/bcc.tar.gz
24 SPECS/bcc.spec > $TMP/SPECS/bcc.spec
27 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
Dbuild-release-rpm.sh19 git archive HEAD --prefix=bcc/ --format=tar.gz -o $TMP/SOURCES/$git_tag_latest.tar.gz
25 SPECS/bcc+clang.spec > $TMP/SPECS/bcc.spec
28 rpmbuild --define "_topdir `pwd`" -ba SPECS/bcc.spec
/external/bcc/src/python/
DCMakeLists.txt7 configure_file(bcc/${PY_SRC} ${CMAKE_CURRENT_BINARY_DIR}/bcc/${PY_SRC} COPYONLY)
15 configure_file(bcc/version.py.in ${CMAKE_CURRENT_BINARY_DIR}/bcc/version.py @ONLY)
23 set(PY_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/bcc/__init__.py ${CMAKE_CURRENT_BINARY_DIR}/setup.py)
28 set(PIP_INSTALLABLE "${CMAKE_CURRENT_BINARY_DIR}/dist-${PY_CMD_ESCAPED}/bcc-${REVISION}.tar.gz")
/external/bcc/tests/python/
Dtest_perf_event.py5 import bcc
41 b = bcc.BPF(text=text, debug=0,
48 cnt1.open_perf_event(bcc.PerfType.HARDWARE, bcc.PerfHWConfig.CPU_CYCLES)
/external/tcpdump/
Dprint-smb.c175 u_int bcc; in print_trans2() local
227 bcc = EXTRACT_LE_16BITS(dat); in print_trans2()
228 ND_PRINT((ndo, "smb_bcc=%u\n", bcc)); in print_trans2()
338 u_int bcc; in print_trans() local
370 bcc = EXTRACT_LE_16BITS(data1); in print_trans()
371 ND_PRINT((ndo, "smb_bcc=%u\n", bcc)); in print_trans()
372 if (bcc > 0) { in print_trans()
400 u_int wct, bcc; in print_negprot() local
423 bcc = EXTRACT_LE_16BITS(data); in print_negprot()
424 ND_PRINT((ndo, "smb_bcc=%u\n", bcc)); in print_negprot()
[all …]
/external/adeb/
DBCC.md10 overview](http://www.joelfernandes.org/resources/bcc-ospm.pdf) and visit [BCC's
11 project page](https://github.com/iovisor/bcc) for the official BCC
72 adeb prepare --build --bcc --kernelsrc /path/to/kernel-source/
83 adeb prepare --arch amd64 --build --bcc --kernelsrc /path/to/kernel-source/
101 In file included from /virtual/include/bcc/bpf.h:12:
113 File "/usr/lib/python2.7/dist-packages/bcc/__init__.py", line 297, in __init__
129 File "/usr/share/bcc/tools/cachetop", line 263, in <module>
133 File "/usr/share/bcc/tools/cachetop", line 172, in handle_loop
135 File "/usr/lib/python2.7/dist-packages/bcc/__init__.py", line 543, in
138 File "/usr/lib/python2.7/dist-packages/bcc/__init__.py", line 355, in
[all …]

12345678910>>...17