xref: /aosp_15_r20/external/bcc/snap/snapcraft.yaml (revision 387f9dfdfa2baef462e92476d413c7bc2470293e)
1*387f9dfdSAndroid Build Coastguard Worker#
2*387f9dfdSAndroid Build Coastguard Worker# Copyright (C) 2016,2020 Canonical
3*387f9dfdSAndroid Build Coastguard Worker#
4*387f9dfdSAndroid Build Coastguard Worker# This program is free software; you can redistribute it and/or
5*387f9dfdSAndroid Build Coastguard Worker# modify it under the terms of the GNU General Public License
6*387f9dfdSAndroid Build Coastguard Worker# as published by the Free Software Foundation; either version 2
7*387f9dfdSAndroid Build Coastguard Worker# of the License, or (at your option) any later version.
8*387f9dfdSAndroid Build Coastguard Worker#
9*387f9dfdSAndroid Build Coastguard Worker# This program is distributed in the hope that it will be useful,
10*387f9dfdSAndroid Build Coastguard Worker# but WITHOUT ANY WARRANTY; without even the implied warranty of
11*387f9dfdSAndroid Build Coastguard Worker# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12*387f9dfdSAndroid Build Coastguard Worker# GNU General Public License for more details.
13*387f9dfdSAndroid Build Coastguard Worker#
14*387f9dfdSAndroid Build Coastguard Worker# You should have received a copy of the GNU General Public License
15*387f9dfdSAndroid Build Coastguard Worker# along with this program; if not, write to the Free Software
16*387f9dfdSAndroid Build Coastguard Worker# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17*387f9dfdSAndroid Build Coastguard Worker#
18*387f9dfdSAndroid Build Coastguard Workername: bcc
19*387f9dfdSAndroid Build Coastguard Workersummary: BPF Compiler Collection (BCC)
20*387f9dfdSAndroid Build Coastguard Workerdescription: A toolkit for creating efficient kernel tracing and manipulation programs
21*387f9dfdSAndroid Build Coastguard Workerconfinement: strict
22*387f9dfdSAndroid Build Coastguard Workergrade: stable
23*387f9dfdSAndroid Build Coastguard Workerplugs:
24*387f9dfdSAndroid Build Coastguard Worker    mount-observe: null
25*387f9dfdSAndroid Build Coastguard Worker    system-observe: null
26*387f9dfdSAndroid Build Coastguard Worker    system-trace: null
27*387f9dfdSAndroid Build Coastguard Workerassumes: [snapd2.37]
28*387f9dfdSAndroid Build Coastguard Workerbase: core18
29*387f9dfdSAndroid Build Coastguard Workeradopt-info: bcc
30*387f9dfdSAndroid Build Coastguard Worker
31*387f9dfdSAndroid Build Coastguard Workerarchitectures:
32*387f9dfdSAndroid Build Coastguard Worker    - build-on: s390x
33*387f9dfdSAndroid Build Coastguard Worker    - build-on: ppc64el
34*387f9dfdSAndroid Build Coastguard Worker    - build-on: arm64
35*387f9dfdSAndroid Build Coastguard Worker    - build-on: armhf
36*387f9dfdSAndroid Build Coastguard Worker    - build-on: amd64
37*387f9dfdSAndroid Build Coastguard Worker    - build-on: i386
38*387f9dfdSAndroid Build Coastguard Worker
39*387f9dfdSAndroid Build Coastguard Workerparts:
40*387f9dfdSAndroid Build Coastguard Worker    bcc:
41*387f9dfdSAndroid Build Coastguard Worker        plugin: cmake
42*387f9dfdSAndroid Build Coastguard Worker        override-pull: |
43*387f9dfdSAndroid Build Coastguard Worker            snapcraftctl pull
44*387f9dfdSAndroid Build Coastguard Worker
45*387f9dfdSAndroid Build Coastguard Worker            find . -type f -exec sed -i 's|^#\!/usr/bin/python|#\!/usr/bin/env python3|' {} \;
46*387f9dfdSAndroid Build Coastguard Worker
47*387f9dfdSAndroid Build Coastguard Worker            version=$(git tag | sort -V | tail -1 | cut -c2-)
48*387f9dfdSAndroid Build Coastguard Worker            commits=$(git log --oneline | wc -l)
49*387f9dfdSAndroid Build Coastguard Worker            sha=$(git log -1 --oneline | cut -d' ' -f1)
50*387f9dfdSAndroid Build Coastguard Worker            date=$(date +'%Y%m%d')
51*387f9dfdSAndroid Build Coastguard Worker            snapcraftctl set-version "$version-$date-$commits-$sha"
52*387f9dfdSAndroid Build Coastguard Worker        configflags:
53*387f9dfdSAndroid Build Coastguard Worker            - '-DCMAKE_INSTALL_PREFIX=/usr'
54*387f9dfdSAndroid Build Coastguard Worker            - '-DPYTHON_CMD=$SNAPCRAFT_STAGE/usr/bin/python3'
55*387f9dfdSAndroid Build Coastguard Worker            - '-DCMAKE_VERBOSE_MAKEFILE=ON'
56*387f9dfdSAndroid Build Coastguard Worker        source: .
57*387f9dfdSAndroid Build Coastguard Worker        build-packages:
58*387f9dfdSAndroid Build Coastguard Worker            - bison
59*387f9dfdSAndroid Build Coastguard Worker            - build-essential
60*387f9dfdSAndroid Build Coastguard Worker            - flex
61*387f9dfdSAndroid Build Coastguard Worker            - git
62*387f9dfdSAndroid Build Coastguard Worker            - iperf
63*387f9dfdSAndroid Build Coastguard Worker            - libclang-4.0-dev
64*387f9dfdSAndroid Build Coastguard Worker            - libedit-dev
65*387f9dfdSAndroid Build Coastguard Worker            - libelf-dev
66*387f9dfdSAndroid Build Coastguard Worker            - libllvm4.0
67*387f9dfdSAndroid Build Coastguard Worker            - libfl-dev
68*387f9dfdSAndroid Build Coastguard Worker            - llvm-4.0-dev
69*387f9dfdSAndroid Build Coastguard Worker            - zlib1g-dev
70*387f9dfdSAndroid Build Coastguard Worker        prime:
71*387f9dfdSAndroid Build Coastguard Worker            - -usr/share/bcc/tools/doc
72*387f9dfdSAndroid Build Coastguard Worker            - usr/lib/*/lib*.so*
73*387f9dfdSAndroid Build Coastguard Worker            - usr/lib/python3
74*387f9dfdSAndroid Build Coastguard Worker            - usr/lib/python3.6*
75*387f9dfdSAndroid Build Coastguard Worker            - usr/share/bcc/tools
76*387f9dfdSAndroid Build Coastguard Worker        after:
77*387f9dfdSAndroid Build Coastguard Worker          - stage
78*387f9dfdSAndroid Build Coastguard Worker
79*387f9dfdSAndroid Build Coastguard Worker    stage:
80*387f9dfdSAndroid Build Coastguard Worker        plugin: nil
81*387f9dfdSAndroid Build Coastguard Worker        stage-packages:
82*387f9dfdSAndroid Build Coastguard Worker            - libbz2-1.0
83*387f9dfdSAndroid Build Coastguard Worker            - liblzma5
84*387f9dfdSAndroid Build Coastguard Worker            - libncursesw5
85*387f9dfdSAndroid Build Coastguard Worker            - libtinfo5
86*387f9dfdSAndroid Build Coastguard Worker            - libzzip-0-13
87*387f9dfdSAndroid Build Coastguard Worker            - python3
88*387f9dfdSAndroid Build Coastguard Worker            - python3-packaging
89*387f9dfdSAndroid Build Coastguard Worker            - python3-pip
90*387f9dfdSAndroid Build Coastguard Worker            - python3-setuptools
91*387f9dfdSAndroid Build Coastguard Worker        prime:
92*387f9dfdSAndroid Build Coastguard Worker            - -usr/lib/*/perl
93*387f9dfdSAndroid Build Coastguard Worker            - -usr/lib/*/perl5
94*387f9dfdSAndroid Build Coastguard Worker            - usr/bin
95*387f9dfdSAndroid Build Coastguard Worker            - usr/lib
96*387f9dfdSAndroid Build Coastguard Worker
97*387f9dfdSAndroid Build Coastguard Worker    wrapper:
98*387f9dfdSAndroid Build Coastguard Worker        plugin: dump
99*387f9dfdSAndroid Build Coastguard Worker        after: [bcc]
100*387f9dfdSAndroid Build Coastguard Worker        source: snap/local
101*387f9dfdSAndroid Build Coastguard Worker
102*387f9dfdSAndroid Build Coastguard Workerapps:
103*387f9dfdSAndroid Build Coastguard Worker    argdist:
104*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper argdist
105*387f9dfdSAndroid Build Coastguard Worker    bashreadline:
106*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper bashreadline
107*387f9dfdSAndroid Build Coastguard Worker    biolatency:
108*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper biolatency
109*387f9dfdSAndroid Build Coastguard Worker    biolatpcts:
110*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper biolatpcts
111*387f9dfdSAndroid Build Coastguard Worker    biosnoop:
112*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper biosnoop
113*387f9dfdSAndroid Build Coastguard Worker    biotop:
114*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper biotop
115*387f9dfdSAndroid Build Coastguard Worker    bitesize:
116*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper bitesize
117*387f9dfdSAndroid Build Coastguard Worker    bpflist:
118*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper bpflist
119*387f9dfdSAndroid Build Coastguard Worker    btrfsdist:
120*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper btrfsdist
121*387f9dfdSAndroid Build Coastguard Worker    btrfsslower:
122*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper btrfsslower
123*387f9dfdSAndroid Build Coastguard Worker    cachestat:
124*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper cachestat
125*387f9dfdSAndroid Build Coastguard Worker    cachetop:
126*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper cachetop
127*387f9dfdSAndroid Build Coastguard Worker    capable:
128*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper capable
129*387f9dfdSAndroid Build Coastguard Worker    cobjnew:
130*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper cobjnew
131*387f9dfdSAndroid Build Coastguard Worker    compactsnoop:
132*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper compactsnoop
133*387f9dfdSAndroid Build Coastguard Worker    cpudist:
134*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper cpudist
135*387f9dfdSAndroid Build Coastguard Worker    cpuunclaimed:
136*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper cpuunclaimed
137*387f9dfdSAndroid Build Coastguard Worker    criticalstat:
138*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper criticalstat
139*387f9dfdSAndroid Build Coastguard Worker    dbslower:
140*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper dbslower
141*387f9dfdSAndroid Build Coastguard Worker    dbstat:
142*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper dbstat
143*387f9dfdSAndroid Build Coastguard Worker    dcsnoop:
144*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper dcsnoop
145*387f9dfdSAndroid Build Coastguard Worker    dcstat:
146*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper dcstat
147*387f9dfdSAndroid Build Coastguard Worker    deadlock:
148*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper deadlock
149*387f9dfdSAndroid Build Coastguard Worker    dirtop:
150*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper dirtop
151*387f9dfdSAndroid Build Coastguard Worker    drsnoop:
152*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper drsnoop
153*387f9dfdSAndroid Build Coastguard Worker    execsnoop:
154*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper execsnoop
155*387f9dfdSAndroid Build Coastguard Worker    exitsnoop:
156*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper exitsnoop
157*387f9dfdSAndroid Build Coastguard Worker    ext4dist:
158*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper ext4dist
159*387f9dfdSAndroid Build Coastguard Worker    ext4slower:
160*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper ext4slower
161*387f9dfdSAndroid Build Coastguard Worker    filelife:
162*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper filelife
163*387f9dfdSAndroid Build Coastguard Worker    fileslower:
164*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper fileslower
165*387f9dfdSAndroid Build Coastguard Worker    filetop:
166*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper filetop
167*387f9dfdSAndroid Build Coastguard Worker    funccount:
168*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper funccount
169*387f9dfdSAndroid Build Coastguard Worker    funcinterval:
170*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper funcinterval
171*387f9dfdSAndroid Build Coastguard Worker    funclatency:
172*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper funclatency
173*387f9dfdSAndroid Build Coastguard Worker    funcslower:
174*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper funcslower
175*387f9dfdSAndroid Build Coastguard Worker    gethostlatency:
176*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper gethostlatency
177*387f9dfdSAndroid Build Coastguard Worker    hardirqs:
178*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper hardirqs
179*387f9dfdSAndroid Build Coastguard Worker    inject:
180*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper inject
181*387f9dfdSAndroid Build Coastguard Worker    javacalls:
182*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper javacalls
183*387f9dfdSAndroid Build Coastguard Worker    javaflow:
184*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper javaflow
185*387f9dfdSAndroid Build Coastguard Worker    javagc:
186*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper javagc
187*387f9dfdSAndroid Build Coastguard Worker    javaobjnew:
188*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper javaobjnew
189*387f9dfdSAndroid Build Coastguard Worker    javastat:
190*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper javastat
191*387f9dfdSAndroid Build Coastguard Worker    javathreads:
192*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper javathreads
193*387f9dfdSAndroid Build Coastguard Worker    killsnoop:
194*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper killsnoop
195*387f9dfdSAndroid Build Coastguard Worker    klockstat:
196*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper klockstat
197*387f9dfdSAndroid Build Coastguard Worker    llcstat:
198*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper llcstat
199*387f9dfdSAndroid Build Coastguard Worker    mdflush:
200*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper mdflush
201*387f9dfdSAndroid Build Coastguard Worker    memleak:
202*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper memleak
203*387f9dfdSAndroid Build Coastguard Worker    mountsnoop:
204*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper mountsnoop
205*387f9dfdSAndroid Build Coastguard Worker    mysqld-qslower:
206*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper mysqld_qslower
207*387f9dfdSAndroid Build Coastguard Worker    netqtop:
208*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper netqtop
209*387f9dfdSAndroid Build Coastguard Worker    nfsdist:
210*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper nfsdist
211*387f9dfdSAndroid Build Coastguard Worker    nfsslower:
212*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper nfsslower
213*387f9dfdSAndroid Build Coastguard Worker    nodegc:
214*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper nodegc
215*387f9dfdSAndroid Build Coastguard Worker    nodestat:
216*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper nodestat
217*387f9dfdSAndroid Build Coastguard Worker    offcputime:
218*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper offcputime
219*387f9dfdSAndroid Build Coastguard Worker    offwaketime:
220*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper offwaketime
221*387f9dfdSAndroid Build Coastguard Worker    oomkill:
222*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper oomkill
223*387f9dfdSAndroid Build Coastguard Worker    opensnoop:
224*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper opensnoop
225*387f9dfdSAndroid Build Coastguard Worker    perlcalls:
226*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper perlcalls
227*387f9dfdSAndroid Build Coastguard Worker    perlflow:
228*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper perlflow
229*387f9dfdSAndroid Build Coastguard Worker    perlstat:
230*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper perlstat
231*387f9dfdSAndroid Build Coastguard Worker    pidpersec:
232*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper pidpersec
233*387f9dfdSAndroid Build Coastguard Worker    profile:
234*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper profile
235*387f9dfdSAndroid Build Coastguard Worker    phpcalls:
236*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper phpcalls
237*387f9dfdSAndroid Build Coastguard Worker    phpflow:
238*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper phpflow
239*387f9dfdSAndroid Build Coastguard Worker    phpstat:
240*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper phpstat
241*387f9dfdSAndroid Build Coastguard Worker    pythoncalls:
242*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper pythoncalls
243*387f9dfdSAndroid Build Coastguard Worker    pythonflow:
244*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper pythonflow
245*387f9dfdSAndroid Build Coastguard Worker    pythongc:
246*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper pythongc
247*387f9dfdSAndroid Build Coastguard Worker    pythonstat:
248*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper pythonstat
249*387f9dfdSAndroid Build Coastguard Worker    readahead:
250*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper readahead
251*387f9dfdSAndroid Build Coastguard Worker    reset-trace:
252*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper reset-trace
253*387f9dfdSAndroid Build Coastguard Worker    rubycalls:
254*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper rubycalls
255*387f9dfdSAndroid Build Coastguard Worker    rubyflow:
256*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper rubyflow
257*387f9dfdSAndroid Build Coastguard Worker    rubygc:
258*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper rubygc
259*387f9dfdSAndroid Build Coastguard Worker    rubyobjnew:
260*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper rubyobjnew
261*387f9dfdSAndroid Build Coastguard Worker    rubystat:
262*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper rubystat
263*387f9dfdSAndroid Build Coastguard Worker    runqlat:
264*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper runqlat
265*387f9dfdSAndroid Build Coastguard Worker    runqlen:
266*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper runqlen
267*387f9dfdSAndroid Build Coastguard Worker    runqslower:
268*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper runqslower
269*387f9dfdSAndroid Build Coastguard Worker    shmsnoop:
270*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper shmsnoop
271*387f9dfdSAndroid Build Coastguard Worker    slabratetop:
272*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper slabratetop
273*387f9dfdSAndroid Build Coastguard Worker    sofdsnoop:
274*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper sofdsnoop
275*387f9dfdSAndroid Build Coastguard Worker    softirqs:
276*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper softirqs
277*387f9dfdSAndroid Build Coastguard Worker    solisten:
278*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper solisten
279*387f9dfdSAndroid Build Coastguard Worker    sslsniff:
280*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper sslsniff
281*387f9dfdSAndroid Build Coastguard Worker    stackcount:
282*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper stackcount
283*387f9dfdSAndroid Build Coastguard Worker    statsnoop:
284*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper statsnoop
285*387f9dfdSAndroid Build Coastguard Worker    swapin:
286*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper swapin
287*387f9dfdSAndroid Build Coastguard Worker    syncsnoop:
288*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper syncsnoop
289*387f9dfdSAndroid Build Coastguard Worker    syscount:
290*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper syscount
291*387f9dfdSAndroid Build Coastguard Worker    tclcalls:
292*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tclcalls
293*387f9dfdSAndroid Build Coastguard Worker    tclflow:
294*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tclflow
295*387f9dfdSAndroid Build Coastguard Worker    tclobjnew:
296*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tclobjnew
297*387f9dfdSAndroid Build Coastguard Worker    tclstat:
298*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tclstat
299*387f9dfdSAndroid Build Coastguard Worker    tcpaccept:
300*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcpaccept
301*387f9dfdSAndroid Build Coastguard Worker    tcpconnect:
302*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcpconnect
303*387f9dfdSAndroid Build Coastguard Worker    tcpconnlat:
304*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcpconnlat
305*387f9dfdSAndroid Build Coastguard Worker    tcpdrop:
306*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcpdrop
307*387f9dfdSAndroid Build Coastguard Worker    tcplife:
308*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcplife
309*387f9dfdSAndroid Build Coastguard Worker    tcpretrans:
310*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcpretrans
311*387f9dfdSAndroid Build Coastguard Worker    tcprtt:
312*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcprtt
313*387f9dfdSAndroid Build Coastguard Worker    tcpstates:
314*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcpstates
315*387f9dfdSAndroid Build Coastguard Worker    tcpsubnet:
316*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcpsubnet
317*387f9dfdSAndroid Build Coastguard Worker    tcpsynbl:
318*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcpsynbl
319*387f9dfdSAndroid Build Coastguard Worker    tcptop:
320*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcptop
321*387f9dfdSAndroid Build Coastguard Worker    tcptracer:
322*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tcptracer
323*387f9dfdSAndroid Build Coastguard Worker    threadsnoop:
324*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper threadsnoop
325*387f9dfdSAndroid Build Coastguard Worker    tplist:
326*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper tplist
327*387f9dfdSAndroid Build Coastguard Worker    trace:
328*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper trace
329*387f9dfdSAndroid Build Coastguard Worker    ttysnoop:
330*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper ttysnoop
331*387f9dfdSAndroid Build Coastguard Worker    ucalls:
332*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper lib/ucalls
333*387f9dfdSAndroid Build Coastguard Worker    uflow:
334*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper lib/uflow
335*387f9dfdSAndroid Build Coastguard Worker    ugc:
336*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper lib/ugc
337*387f9dfdSAndroid Build Coastguard Worker    uobjnew:
338*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper lib/uobjnew
339*387f9dfdSAndroid Build Coastguard Worker    ustat:
340*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper lib/ustat
341*387f9dfdSAndroid Build Coastguard Worker    uthreads:
342*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper lib/uthreads
343*387f9dfdSAndroid Build Coastguard Worker    vfscount:
344*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper vfscount
345*387f9dfdSAndroid Build Coastguard Worker    vfsstat:
346*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper vfsstat
347*387f9dfdSAndroid Build Coastguard Worker    wakeuptime:
348*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper wakeuptime
349*387f9dfdSAndroid Build Coastguard Worker    xfsdist:
350*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper xfsdist
351*387f9dfdSAndroid Build Coastguard Worker    xfsslower:
352*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper xfsslower
353*387f9dfdSAndroid Build Coastguard Worker    zfsdist:
354*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper zfsdist
355*387f9dfdSAndroid Build Coastguard Worker    zfsslower:
356*387f9dfdSAndroid Build Coastguard Worker        command: bcc-wrapper zfsslower
357*387f9dfdSAndroid Build Coastguard Worker
358*387f9dfdSAndroid Build Coastguard Worker# vim: set ai et sts=4 tabstop=4 sw=4:
359