Lines Matching refs:perfdata

21 perfdata=$(mktemp /tmp/__perf_test.perf.data.XXXXX)
39 rm -f "${perfdata}"
40 rm -f "${perfdata}".old
60 if ! perf record --per-thread -o "${perfdata}" ${testprog} 2> /dev/null
66 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
77 rm -f "${perfdata}"
80 perf record -p "${TESTPID}" --per-thread -o "${perfdata}" sleep 1 2> /dev/null
83 if [ ! -e "${perfdata}" ]
89 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
125 if ! perf record -aB --synth=no -o "${perfdata}" ${testprog} 2> /dev/null
130 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
137 -o "${perfdata}" ${testprog} 2> /dev/null
143 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
154 if ! perf record -o "${perfdata}" ${testprog} 2> /dev/null
160 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
167 -o "${perfdata}" ${testprog} 2> /dev/null
173 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
193 …if ! perf record -o "${perfdata}" -e "{branches:p,instructions}" -j any,counter ${testprog} 2> /de…
199 if ! perf report -i "${perfdata}" -D -q | grep -q "$br_cntr_output"
205 if ! perf script -i "${perfdata}" -F +brstackinsn,+brcntr | grep -q "$br_cntr_script_output"
216 if ! perf record -aB --synth=cgroup --all-cgroups -o "${perfdata}" ${testprog} 2> /dev/null
221 if ! perf report -i "${perfdata}" -D | grep -q "CGROUP"
227 if ! perf script -i "${perfdata}" -F cgroup | grep -q -v "unknown"
238 if ! perf record -aB --synth=no --uid "$(id -u)" -o "${perfdata}" ${testprog} \
252 if ! perf report -i "${perfdata}" -q | grep -q "${testsym}"
263 if ! perf record -o "${perfdata}" -e "{cycles,cycles}:Su" -- \
270 perf script -i "${perfdata}" | grep brstack > $script_output
316 if ! perf record -o "${perfdata}" -e "{instructions,slots,topdown-retiring}:S" true 2> /dev/null
330 if perf record -o "${perfdata}" -e "cycles" true 2> /dev/null
332 if ! perf record -o "${perfdata}" -e "cycles:P" true 2> /dev/null
343 if perf record -o "${perfdata}" -e "instructions" true 2> /dev/null
346 if ! perf record -o "${perfdata}" -e "instructions:P" true 2> /dev/null
374 if ! perf record -o "${perfdata}" $cmd_flags perf test -w brstack
381 if ! perf report -i "${perfdata}" 2>&1 | grep "${testsym2}"