Searched refs:tmp_file (Results 1 - 7 of 7) sorted by relevance

/linux-master/scripts/
H A Dtools-support-relr.sh4 tmp_file=$(mktemp)
5 trap "rm -f $tmp_file.o $tmp_file $tmp_file.bin" EXIT
7 cat << "END" | $CC -c -x c - -o $tmp_file.o >/dev/null 2>&1
12 if ! $LD $tmp_file.o -shared -Bsymbolic --pack-dyn-relocs=relr -o $tmp_file 2>/dev/null; then
13 $LD $tmp_file.o -shared -Bsymbolic -z pack-relative-relocs -o $tmp_file 2>&1 |
19 test -z "$($NM $tmp_file
[all...]
H A Dleaking_addresses.pl251 my $tmp_file = "";
258 ($tmp_fh, $tmp_file) = tempfile("config.gz-XXXXXX",
261 if (system("gunzip < /proc/config.gz > $tmp_file")) {
265 @config_files = ($tmp_file);
H A Drecordmcount.c331 char tmp_file[strlen(fname) + 4]; local
337 sprintf(tmp_file, "%s.rc", fname);
344 fd_map = open(tmp_file, O_WRONLY | O_TRUNC | O_CREAT, sb.st_mode);
364 if (rename(tmp_file, fname) < 0) {
/linux-master/tools/time/
H A Dudelay_test.sh19 tmp_file=`mktemp`
26 tee -a $tmp_file < $UDELAY_PATH
31 if [ -f $tmp_file ]; then
32 rm $tmp_file
53 count=`grep -c FAIL $tmp_file`
/linux-master/tools/testing/selftests/
H A Dkselftest_deps.sh64 tmp_file=$(mktemp).c
65 trap "rm -f $tmp_file.o $tmp_file $tmp_file.bin" EXIT
66 #echo $tmp_file
77 cat << "EOF" > $tmp_file
264 $CC -o $tmp_file.bin $lib $tmp_file > /dev/null 2>&1
/linux-master/tools/testing/selftests/drivers/net/netdevsim/
H A Dpeer.sh117 tmp_file=$(mktemp)
118 ip netns exec nssv socat TCP-LISTEN:1234,fork $tmp_file &
126 count=$(cat $tmp_file | wc -c)
/linux-master/tools/testing/selftests/net/
H A Dfib_tests.sh2292 local tmp_file=$(mktemp)
2293 ip netns exec $ns2 socat UDP4-LISTEN:54321,fork $tmp_file &
2324 [[ $(cat $tmp_file | wc -l) -eq 3 ]]
2332 rm $tmp_file
2350 local tmp_file=$(mktemp)
2351 ip netns exec $ns2 socat UDP6-LISTEN:54321,fork $tmp_file &
2382 [[ $(cat $tmp_file | wc -l) -eq 3 ]]
2390 rm $tmp_file
2540 local tmp_file=$(mktemp)
2549 run_cmd "perf stat -a -e fib:fib_table_lookup --filter 'err == 0' -j -o $tmp_file
[all...]

Completed in 241 milliseconds