Lines Matching full:foo
26 perf probe -x ${temp_dir}/testfile -d foo || true
40 cat > ${temp_dir}/testfile-foo.h << EOF
47 extern int foo (int i, struct t *t);
50 cat > ${temp_dir}/testfile-foo.c << EOF
51 #include "testfile-foo.h"
54 foo (int i, struct t *t)
65 #include "testfile-foo.h"
78 return foo (3, &g);
82 gcc -g -Og -flto -c ${temp_dir}/testfile-foo.c -o ${temp_dir}/testfile-foo.o
84 gcc -g -Og -o ${temp_dir}/testfile ${temp_dir}/testfile-foo.o ${temp_dir}/testfile-main.o
86 perf probe -x ${temp_dir}/testfile --funcs foo | grep "foo"
87 perf probe -x ${temp_dir}/testfile foo